We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e16dc59 commit cecd035Copy full SHA for cecd035
.github/workflows/maven.yml
@@ -43,10 +43,18 @@ jobs:
43
maven-${{ matrix.os }}-java${{ matrix.java }}-
44
maven-${{ matrix.os }}-
45
46
- - name: Set up JDK
+ - name: Set up JDK for building
47
uses: actions/setup-java@v1
48
with:
49
- java-version: ${{ matrix.java }}
+ java-version: 15
50
51
- name: Build with Maven
52
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