Skip to content

Commit 9c22ef3

Browse files
committed
Add test job with corretto java distro
1 parent 142ec0a commit 9c22ef3

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

.github/workflows/jvm_corretto.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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@v3
15+
with:
16+
distribution: "corretto"
17+
java-version: "21"
18+
19+
- name: Install all the tools
20+
uses: ./
21+
with:
22+
cli: latest
23+
clj-kondo: latest
24+
cljstyle: latest
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

Comments
 (0)