Skip to content

Commit 6dc1125

Browse files
committed
👷 Matrix build for multiple jdk versions
1 parent 35047db commit 6dc1125

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/ci.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,16 @@ jobs:
77
build:
88
runs-on: ubuntu-latest
99

10+
strategy:
11+
matrix:
12+
java: [ 8, 12, 15 ]
13+
1014
steps:
1115
- uses: actions/checkout@v2
1216
- name: Set up JDK
1317
uses: actions/setup-java@v1
1418
with:
15-
java-version: 1.8
19+
java-version: ${{ matrix.java }}
1620
- name: Cache Maven packages
1721
uses: actions/cache@v2
1822
with:

0 commit comments

Comments
 (0)