mirror of
https://github.com/taoensso/telemere.git
synced 2025-12-16 17:41:12 +00:00
[nop] Update project template
Some checks failed
Clj tests / tests (17, ubuntu-latest) (push) Has been cancelled
Clj tests / tests (19, ubuntu-latest) (push) Has been cancelled
Clj tests / tests (21, ubuntu-latest) (push) Has been cancelled
Cljs tests / tests (21, ubuntu-latest) (push) Has been cancelled
Graal tests / tests (17, macOS-latest) (push) Has been cancelled
Graal tests / tests (17, ubuntu-latest) (push) Has been cancelled
Graal tests / tests (17, windows-latest) (push) Has been cancelled
Some checks failed
Clj tests / tests (17, ubuntu-latest) (push) Has been cancelled
Clj tests / tests (19, ubuntu-latest) (push) Has been cancelled
Clj tests / tests (21, ubuntu-latest) (push) Has been cancelled
Cljs tests / tests (21, ubuntu-latest) (push) Has been cancelled
Graal tests / tests (17, macOS-latest) (push) Has been cancelled
Graal tests / tests (17, ubuntu-latest) (push) Has been cancelled
Graal tests / tests (17, windows-latest) (push) Has been cancelled
This commit is contained in:
parent
b7b3a25a82
commit
f6ec872f7c
4 changed files with 43 additions and 12 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
name: Main tests
|
name: Clj tests
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
@ -7,7 +7,6 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
java: ['17', '19', '21']
|
java: ['17', '19', '21']
|
||||||
os: [ubuntu-latest]
|
os: [ubuntu-latest]
|
||||||
|
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
@ -15,17 +14,14 @@ jobs:
|
||||||
with:
|
with:
|
||||||
distribution: 'corretto'
|
distribution: 'corretto'
|
||||||
java-version: ${{ matrix.java }}
|
java-version: ${{ matrix.java }}
|
||||||
|
|
||||||
- uses: DeLaGuardo/setup-clojure@12.5
|
- uses: DeLaGuardo/setup-clojure@12.5
|
||||||
with:
|
with:
|
||||||
lein: latest
|
lein: latest
|
||||||
|
|
||||||
- uses: actions/cache@v4
|
- uses: actions/cache@v4
|
||||||
id: cache-deps
|
id: cache-deps
|
||||||
with:
|
with:
|
||||||
path: ~/.m2/repository
|
path: ~/.m2/repository
|
||||||
key: deps-${{ hashFiles('main/project.clj') }}
|
key: deps-${{ hashFiles('main/project.clj') }}
|
||||||
restore-keys: deps-
|
restore-keys: deps-
|
||||||
|
- run: lein test-clj
|
||||||
- run: lein test-all
|
|
||||||
working-directory: main
|
working-directory: main
|
||||||
27
.github/workflows/cljs-tests.yml
vendored
Normal file
27
.github/workflows/cljs-tests.yml
vendored
Normal file
|
|
@ -0,0 +1,27 @@
|
||||||
|
name: Cljs tests
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
tests:
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
java: ['21']
|
||||||
|
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/setup-clojure@12.5
|
||||||
|
with:
|
||||||
|
lein: latest
|
||||||
|
- uses: actions/cache@v4
|
||||||
|
id: cache-deps
|
||||||
|
with:
|
||||||
|
path: ~/.m2/repository
|
||||||
|
key: deps-${{ hashFiles('main/project.clj') }}
|
||||||
|
restore-keys: deps-
|
||||||
|
- run: lein test-cljs
|
||||||
|
working-directory: main
|
||||||
9
.github/workflows/graal-tests.yml
vendored
9
.github/workflows/graal-tests.yml
vendored
|
|
@ -2,7 +2,7 @@ name: Graal tests
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
tests:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
java: ['17']
|
java: ['17']
|
||||||
|
|
@ -29,5 +29,10 @@ jobs:
|
||||||
key: deps-${{ hashFiles('main/project.clj') }}
|
key: deps-${{ hashFiles('main/project.clj') }}
|
||||||
restore-keys: deps-
|
restore-keys: deps-
|
||||||
|
|
||||||
- run: bb graal-tests
|
- name: Run Graal tests
|
||||||
|
run: bb graal-tests
|
||||||
working-directory: main
|
working-directory: main
|
||||||
|
|
||||||
|
# - name: Run Babashka tests
|
||||||
|
# run: bb bb-tests
|
||||||
|
# working-directory: main
|
||||||
|
|
|
||||||
11
README.md
11
README.md
|
|
@ -37,7 +37,8 @@ See [quick examples](#quick-examples) or the [wiki](../../wiki/1-Getting-started
|
||||||
|
|
||||||
- `2025-05-27` `v1.0.1`: [release info](../../releases/tag/v1.0.1)
|
- `2025-05-27` `v1.0.1`: [release info](../../releases/tag/v1.0.1)
|
||||||
|
|
||||||
[![Main tests][Main tests SVG]][Main tests URL]
|
[![Clj tests][Clj tests SVG]][Clj tests URL]
|
||||||
|
[![Cljs tests][Cljs tests SVG]][Cljs tests URL]
|
||||||
[![Graal tests][Graal tests SVG]][Graal tests URL]
|
[![Graal tests][Graal tests SVG]][Graal tests URL]
|
||||||
|
|
||||||
<!--See [here][GitHub releases] for earlier releases.-->
|
<!--See [here][GitHub releases] for earlier releases.-->
|
||||||
|
|
@ -377,7 +378,9 @@ Licensed under [EPL 1.0](LICENSE.txt) (same as Clojure).
|
||||||
[Clojars SVG]: https://img.shields.io/clojars/v/com.taoensso/telemere.svg
|
[Clojars SVG]: https://img.shields.io/clojars/v/com.taoensso/telemere.svg
|
||||||
[Clojars URL]: https://clojars.org/com.taoensso/telemere
|
[Clojars URL]: https://clojars.org/com.taoensso/telemere
|
||||||
|
|
||||||
[Main tests SVG]: https://github.com/taoensso/telemere/actions/workflows/main-tests.yml/badge.svg
|
[Clj tests SVG]: https://github.com/taoensso/telemere/actions/workflows/clj-tests.yml/badge.svg
|
||||||
[Main tests URL]: https://github.com/taoensso/telemere/actions/workflows/main-tests.yml
|
[Clj tests URL]: https://github.com/taoensso/telemere/actions/workflows/clj-tests.yml
|
||||||
|
[Cljs tests SVG]: https://github.com/taoensso/telemere/actions/workflows/cljs-tests.yml/badge.svg
|
||||||
|
[Cljs tests URL]: https://github.com/taoensso/telemere/actions/workflows/cljs-tests.yml
|
||||||
[Graal tests SVG]: https://github.com/taoensso/telemere/actions/workflows/graal-tests.yml/badge.svg
|
[Graal tests SVG]: https://github.com/taoensso/telemere/actions/workflows/graal-tests.yml/badge.svg
|
||||||
[Graal tests URL]: https://github.com/taoensso/telemere/actions/workflows/graal-tests.yml
|
[Graal tests URL]: https://github.com/taoensso/telemere/actions/workflows/graal-tests.yml
|
||||||
Loading…
Reference in a new issue