Skip to content

Commit

Permalink
[CI] add java-version dimesion to test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
namenu committed Feb 12, 2024
1 parent 2994963 commit 93f8a12
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,25 @@ on:
- master
jobs:
build:
strategy:
matrix:
java-version: ["11", "17", "21"]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.4.0
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v3.10.0
uses: actions/setup-java@v4
with:
java-version: '11'
java-version: ${{ matrix.java-version }}
distribution: 'corretto'
- name: Setup Clojure
uses: DeLaGuardo/[email protected]
with:
cli: 1.11.1.1165

- name: Cache clojure dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.m2/repository
Expand Down

0 comments on commit 93f8a12

Please sign in to comment.