Skip to content

Commit

Permalink
[nop] Update project template, add wiki
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed Jun 5, 2024
1 parent 533dd0b commit d1a795f
Show file tree
Hide file tree
Showing 16 changed files with 499 additions and 269 deletions.
25 changes: 0 additions & 25 deletions .github/workflows/build.yml

This file was deleted.

32 changes: 32 additions & 0 deletions .github/workflows/graal-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 1,32 @@
name: Graal tests
on: [push, pull_request]

jobs:
test:
strategy:
matrix:
java: ['17']
os: [ubuntu-latest, macOS-latest, windows-latest]

runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: graalvm/setup-graalvm@v1
with:
version: 'latest'
java-version: ${{ matrix.java }}
components: 'native-image'
github-token: ${{ secrets.GITHUB_TOKEN }}

- uses: DeLaGuardo/[email protected]
with:
lein: latest
bb: latest

- uses: actions/cache@v4
with:
path: ~/.m2/repository
key: deps-${{ hashFiles('deps.edn') }}
restore-keys: deps-

- run: bb graal-tests
30 changes: 30 additions & 0 deletions .github/workflows/main-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 1,30 @@
name: Main tests
on: [push, pull_request]

jobs:
tests:
strategy:
matrix:
java: ['17', '18', '19']
os: [ubuntu-latest]

runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: ${{ matrix.java }}

- uses: DeLaGuardo/[email protected]
with:
lein: latest

- uses: actions/cache@v4
id: cache-deps
with:
path: ~/.m2/repository
key: deps-${{ hashFiles('project.clj') }}
restore-keys: deps-

- run: lein test-all
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 10,4 @@ pom.xml*
/target/
/checkouts/
/logs/
/wiki/.git
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 1,4 @@
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md)
This project uses Break Versioning (https://www.taoensso.com/break-versioning)

## v1.5.3 - 2022 Oct 27

Expand All @@ -8,7 8,7 @@

> This is a major maintenance release that should be non-breaking for most users.
* **New**: Wiki docs at https://github.com/ptaoussanis/tempura/wiki
* **New**: Wiki docs at https://github.com/taoensso/tempura/wiki
* **New**: Add `new-tr-fn` for creating `tr` partials with fn-local cache.
* **BREAKING**: `wrap-ring-request` (alpha) API changes, see commit ed688af18de2 for details.

Expand Down
2 changes: 1 addition & 1 deletion FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,2 1,2 @@
github: ptaoussanis
custom: "https://www.taoensso.com/clojure/backers"
custom: "https://www.taoensso.com/clojure"
File renamed without changes.
Loading

0 comments on commit d1a795f

Please sign in to comment.