File tree Expand file tree Collapse file tree 1 file changed +3
-10
lines changed Expand file tree Collapse file tree 1 file changed +3
-10
lines changed Original file line number Diff line number Diff line change @@ -26,25 +26,18 @@ jobs:
26
26
strategy :
27
27
matrix :
28
28
os : [ubuntu-latest, macOS-latest, windows-latest]
29
- java : [17, 21, 22]
30
- distribution : ['zulu ']
29
+ java : [17, 21, 22-ea ]
30
+ distribution : ['temurin ']
31
31
fail-fast : false
32
32
max-parallel : 5
33
33
name : Test JDK ${{ matrix.java }}, ${{ matrix.os }}
34
34
35
35
steps :
36
36
- uses : actions/checkout@v4
37
- - name : Set JDK from jdk.java.net
38
- uses : oracle-actions/setup-java@v1
39
- with :
40
- website : jdk.java.net
41
- release : ${{ matrix.java }}
42
- if : ${{ matrix.java != '17' }}
43
- - name : Set up older JDK
37
+ - name : Set up JDK
44
38
uses : actions/setup-java@v3
45
39
with :
46
40
java-version : ${{ matrix.java }}
47
41
distribution : ${{ matrix.distribution }}
48
- if : ${{ matrix.java == '17' }}
49
42
- name : Test with Maven
50
43
run : ./mvnw test -B -D"license.skip=true"
You can’t perform that action at this time.
0 commit comments