Skip to content

Commit

Permalink
Add test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
laughingman7743 committed Apr 9, 2024
1 parent 1ac69d2 commit 99f6c20
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,15 @@ on:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [11, 17, 21]

steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: "11"
java-version: ${{ matrix.java-version }}
distribution: "temurin"
cache: 'maven'
- name: Build with Maven
Expand Down

0 comments on commit 99f6c20

Please sign in to comment.