Skip to content

Commit fba6349

Browse files
committed
clojure workflow
1 parent 48e968d commit fba6349

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

.github/workflows/clojure.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,21 @@ on:
88

99
jobs:
1010
build:
11-
1211
runs-on: ubuntu-latest
1312

1413
steps:
15-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
15+
- name: Setup Java
16+
uses: actions/setup-java@v3
17+
with:
18+
distribution: 'temurin'
19+
java-version: '21'
20+
21+
- name: Install Clojure Tools
22+
uses: DeLaGuardo/setup-clojure@13.4
23+
with:
24+
cli: latest
25+
lein: latest
26+
1627
- name: generate html report
1728
run: cd report && lein run

0 commit comments

Comments
 (0)