File tree Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 12
12
strategy :
13
13
matrix :
14
14
# Supported Java versions: LTS releases and latest
15
- jdk : [8, 11, 17, 21]
16
- clojure : [11, 12]
15
+ jdk : [8, 11, 17, 21, 23]
17
16
18
- name : Clojure ${{ matrix.clojure }} ( Java ${{ matrix.jdk }})
17
+ name : Java ${{ matrix.jdk }}
19
18
20
19
runs-on : ubuntu-latest
21
20
@@ -31,16 +30,16 @@ jobs:
31
30
path : |
32
31
~/.m2/repository
33
32
~/.gitlibs
34
- key : ${{ runner.os }}-test-deps-${{ hashFiles('**/deps.edn') }}-${{ matrix.clojure }}-${{ matrix. jdk }}
33
+ key : ${{ runner.os }}-test-deps-${{ hashFiles('**/deps.edn') }}-${{ matrix.jdk }}
35
34
restore-keys : |
36
- ${{ runner.os }}-test-deps-${{ hashFiles('**/deps.edn') }}-${{ matrix.clojure }}-
35
+ ${{ runner.os }}-test-deps-${{ hashFiles('**/deps.edn') }}-
37
36
${{ runner.os }}-test-deps-
38
37
- name : Setup Clojure
39
38
uses : DeLaGuardo/setup-clojure@master
40
39
with :
41
40
cli : latest
42
41
- name : Run tests
43
- run : CLOJURE_ALIAS=clojure-${{ matrix.clojure }} bin/kaocha
42
+ run : bin/kaocha
44
43
45
44
build-cljs :
46
45
name : ClojureScript
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
- # Should work if the env var is empty
3
- clojure -A:$CLOJURE_ALIAS -M:test -m kaocha.runner " $@ "
2
+ clojure -M:test -m kaocha.runner " $@ "
You can’t perform that action at this time.
0 commit comments