Skip to content

Commit

Permalink
Merge pull request #21 from xcoo/fix/actions
Browse files Browse the repository at this point in the history
Fix actions environment
  • Loading branch information
itoooo authored Mar 27, 2024
2 parents 25fa1c9 + 6133961 commit 6e6f465
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@ jobs:
strategy:
matrix:
os:
- Ubuntu-18.04
- Ubuntu-20.04
- Ubuntu-22.04
openjdk:
- 8
- 11
- 17
- 21
clojure:
- 1.8
- 1.9
Expand All @@ -20,10 +22,10 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install Openjdk
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: corretto
java-version: ${{ matrix.openjdk }}
Expand All @@ -37,9 +39,9 @@ jobs:
javac -J-Xmx32m -version
- name: Install leiningen
uses: DeLaGuardo/setup-clojure@5.0
uses: DeLaGuardo/setup-clojure@12.5
with:
lein: 2.9.1
lein: 2.11.2

- name: Show leiningen version
run: |
Expand Down

0 comments on commit 6e6f465

Please sign in to comment.