mirror of
https://github.com/taoensso/telemere.git
synced 2025-12-16 17:41:12 +00:00
[new] Add Clojure v1.12, JVM v21 to tests
This commit is contained in:
parent
824a057a99
commit
6dbdba743f
2 changed files with 4 additions and 3 deletions
2
.github/workflows/main-tests.yml
vendored
2
.github/workflows/main-tests.yml
vendored
|
|
@ -5,7 +5,7 @@ jobs:
|
|||
tests:
|
||||
strategy:
|
||||
matrix:
|
||||
java: ['17', '18', '19']
|
||||
java: ['17', '19', '21']
|
||||
os: [ubuntu-latest]
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@
|
|||
{;; :default [:base :system :user :provided :dev]
|
||||
:provided {:dependencies [[org.clojure/clojurescript "1.11.132"]
|
||||
[org.clojure/clojure "1.11.1"]]}
|
||||
:c1.12 {:dependencies [[org.clojure/clojure "1.12.0-alpha8"]]}
|
||||
:c1.11 {:dependencies [[org.clojure/clojure "1.11.1"]]}
|
||||
:c1.10 {:dependencies [[org.clojure/clojure "1.10.1"]]}
|
||||
:c1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]}
|
||||
|
|
@ -81,6 +82,6 @@
|
|||
"build-once" ["do" ["clean"] ["cljsbuild" "once"]]
|
||||
"deploy-lib" ["do" ["build-once"] ["deploy" "clojars"] ["install"]]
|
||||
|
||||
"test-clj" ["with-profile" "+c1.11:+c1.10:+c1.9" "test"]
|
||||
"test-cljs" ["with-profile" "+test" "cljsbuild" "test"]
|
||||
"test-clj" ["with-profile" "+c1.12:+c1.11:+c1.10:+c1.9" "test"]
|
||||
"test-cljs" ["with-profile" "+test" "cljsbuild" "test"]
|
||||
"test-all" ["do" ["clean"] ["test-clj"] ["test-cljs"]]})
|
||||
|
|
|
|||
Loading…
Reference in a new issue