File tree Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Original file line number Diff line number Diff line change 8
8
jobs :
9
9
checks :
10
10
runs-on : ubuntu-latest
11
-
11
+
12
12
steps :
13
13
- uses : actions/checkout@v4
14
14
- uses : actions/cache@v4
@@ -22,18 +22,21 @@ jobs:
22
22
23
23
- name : Install clj runtime
24
24
run : .github/workflows/install-binaries.sh
25
-
25
+
26
+ - name : Add clj runtime to PATH
27
+ run : echo "${PWD}/bin" >> $GITHUB_PATH
28
+
26
29
- name : Run tests on Clojure
27
- run : bin/ clojure -M:test
30
+ run : clojure -M:test
28
31
29
32
- name : Run tests on Babashka
30
- run : bin/ bb -Sdeps '{:deps {lambdaisland/kaocha {:mvn/version "RELEASE"}}}' -m kaocha.runner/-main
33
+ run : bb -Sdeps '{:deps {lambdaisland/kaocha {:mvn/version "RELEASE"}}}' -m kaocha.runner/-main
31
34
32
35
- name : Check dependency freshness
33
- run : bin/ clojure -M:outdated
36
+ run : clojure -M:outdated
34
37
35
38
- name : Run linters
36
- run : bin/ clojure -M:clj-kondo --lint src test
39
+ run : clojure -M:clj-kondo --lint src test
37
40
38
41
create_release :
39
42
if : startsWith(github.ref, 'refs/tags/v0') || startsWith(github.ref, 'refs/tags/v1')
97
100
run : .github/workflows/install-binaries.sh
98
101
99
102
- name : Build artifact
100
- run : make ${{ steps.artifact.outputs.filename }} BB=bin/bb
103
+ run : make ${{ steps.artifact.outputs.filename }}
101
104
102
105
- name : Upload artifact
103
106
uses : actions/upload-release-asset@v1
You can’t perform that action at this time.
0 commit comments