File tree 1 file changed +25
-0
lines changed
1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change 32
32
shell : bash
33
33
run : mvn test -B
34
34
35
+ early_access :
36
+ name : ' JDK Early-Access'
37
+ continue-on-error : true
38
+ runs-on : ubuntu-latest
39
+ steps :
40
+ - name : ' Check out repository'
41
+ uses : actions/checkout@v2
42
+ - name : ' Cache local Maven repository'
43
+ uses : actions/cache@v2
44
+ with :
45
+ path : ~/.m2/repository
46
+ key : ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
47
+ restore-keys : |
48
+ ${{ runner.os }}-maven-
49
+ - name : ' Set up JDK ${{ matrix.java }}'
50
+ uses : actions/setup-java@v1
51
+ with :
52
+ java-version : 16-ea
53
+ - name : ' Install'
54
+ shell : bash
55
+ run : mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V
56
+ - name : ' Test'
57
+ shell : bash
58
+ run : mvn test -B
59
+
35
60
publish_snapshot :
36
61
name : ' Publish snapshot'
37
62
needs : test
You can’t perform that action at this time.
0 commit comments