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 d00ad96 commit 8d91cdaCopy full SHA for 8d91cda
.github/workflows/pr.yaml
@@ -11,14 +11,16 @@ jobs:
11
runs-on: ubuntu-latest
12
strategy:
13
matrix:
14
- java: [ 8, 11 ]
+ java: [ 8, 11, 17 ]
15
name: Java ${{ matrix.java }} Test
16
steps:
17
- uses: actions/checkout@v2
18
- name: Setup java
19
- uses: actions/setup-java@v1
+ uses: actions/setup-java@v2
20
with:
21
+ cache: 'maven'
22
java-version: ${{ matrix.java }}
23
+ distribution: 'temurin'
24
- run: |
25
mvn clean install -DskipTests -B
26
mvn verify -B
0 commit comments