Skip to content

Commit 99f6c20

Browse files
Add test matrix
1 parent 1ac69d2 commit 99f6c20

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/test.yaml

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,15 @@ on:
66
jobs:
77
test:
88
runs-on: ubuntu-latest
9+
strategy:
10+
matrix:
11+
java-version: [11, 17, 21]
912

1013
steps:
1114
- uses: actions/checkout@v4
1215
- uses: actions/setup-java@v4
1316
with:
14-
java-version: "11"
17+
java-version: ${{ matrix.java-version }}
1518
distribution: "temurin"
1619
cache: 'maven'
1720
- name: Build with Maven

0 commit comments

Comments
 (0)