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]
|
||||
|
||||
jobs:
|
||||
|
|
@ -7,7 +7,6 @@ jobs:
|
|||
matrix:
|
||||
java: ['17', '19', '21']
|
||||
os: [ubuntu-latest]
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
|
@ -15,17 +14,14 @@ jobs:
|
|||
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-all
|
||||
- run: lein test-clj
|
||||
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]
|
||||
|
||||
jobs:
|
||||
test:
|
||||
tests:
|
||||
strategy:
|
||||
matrix:
|
||||
java: ['17']
|
||||
|
|
@ -29,5 +29,10 @@ jobs:
|
|||
key: deps-${{ hashFiles('main/project.clj') }}
|
||||
restore-keys: deps-
|
||||
|
||||
- run: bb graal-tests
|
||||
- name: Run Graal tests
|
||||
run: bb graal-tests
|
||||
working-directory: main
|
||||
|
||||
# - name: Run Babashka tests
|
||||
# run: bb bb-tests
|
||||
# working-directory: main
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
||||
[![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]
|
||||
|
||||
<!--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 URL]: https://clojars.org/com.taoensso/telemere
|
||||
|
||||
[Main tests SVG]: https://github.com/taoensso/telemere/actions/workflows/main-tests.yml/badge.svg
|
||||
[Main tests URL]: https://github.com/taoensso/telemere/actions/workflows/main-tests.yml
|
||||
[Clj tests SVG]: https://github.com/taoensso/telemere/actions/workflows/clj-tests.yml/badge.svg
|
||||
[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 URL]: https://github.com/taoensso/telemere/actions/workflows/graal-tests.yml
|
||||
Loading…
Reference in a new issue