We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 142ec0a commit c40e9e0Copy full SHA for c40e9e0
1 file changed
.github/workflows/jvm_corretto.yml
@@ -0,0 +1,33 @@
1
+name: Test Amazon corretto JDK
2
+
3
+on: [push]
4
5
+jobs:
6
+ corretto-tests:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - name: Checkout
11
+ uses: actions/checkout@main
12
13
+ - name: Prepare java
14
+ uses: actions/setup-java@v4
15
+ with:
16
+ distribution: "corretto"
17
+ java-version: "21"
18
19
+ - name: Install all the tools
20
+ uses: ./
21
22
+ cli: 1.12.0.1488
23
+ clj-kondo: 2023.12.15
24
+ cljstyle: 0.15.0
25
26
+ - name: Check Clojure CLI
27
+ run: clojure -Sdescribe
28
29
+ - name: Check clj-kondo version
30
+ run: clj-kondo --version
31
32
+ - name: Check cljstyle version
33
+ run: cljstyle version
0 commit comments