Skip to content

Commit cecd035

Browse files
committed
Github CI: Build with JDK 15, test with matrix
Signed-off-by: Markus KARG <markus@headcrashing.eu>
1 parent e16dc59 commit cecd035

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/maven.yml

+10-2
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,18 @@ jobs:
4343
maven-${{ matrix.os }}-java${{ matrix.java }}-
4444
maven-${{ matrix.os }}-
4545
46-
- name: Set up JDK
46+
- name: Set up JDK for building
4747
uses: actions/setup-java@v1
4848
with:
49-
java-version: ${{ matrix.java }}
49+
java-version: 15
5050

5151
- name: Build with Maven
5252
run: mvn verify javadoc:javadoc -e -B -V
53+
54+
- name: Set up JDK for testing
55+
uses: actions/setup-java@v1
56+
with:
57+
java-version: ${{ matrix.java }}
58+
59+
- name: Test with Maven
60+
run: mvn verify -e -B -V

0 commit comments

Comments
 (0)