File tree Expand file tree Collapse file tree 1 file changed +5
-16
lines changed Expand file tree Collapse file tree 1 file changed +5
-16
lines changed Original file line number Diff line number Diff line change @@ -25,29 +25,18 @@ jobs:
25
25
strategy :
26
26
matrix :
27
27
os : [ ubuntu-latest,windows-latest, macOS-latest ]
28
- java : [ 8, 11, 16, 17-ea ]
28
+ java : [ 8, 11, 17 ]
29
29
fail-fast : false
30
30
31
31
runs-on : ${{ matrix.os }}
32
32
33
33
steps :
34
- - name : Checkout
35
- uses : actions/checkout@v2
36
-
37
- - name : Set up cache for ~./m2/repository
38
- uses : actions/cache@v2
39
- with :
40
- path : ~/.m2/repository
41
- key : maven-${{ matrix.os }}-java${{ matrix.java }}-${{ hashFiles('**/pom.xml') }}
42
- restore-keys : |
43
- maven-${{ matrix.os }}-java${{ matrix.java }}-
44
- maven-${{ matrix.os }}-
45
-
46
- - name : Set up JDK
47
- uses : actions/setup-java@v2
34
+ - uses : actions/checkout@v2
35
+ - uses : actions/setup-java@v2
48
36
with :
49
37
distribution : adopt
50
38
java-version : ${{ matrix.java }}
39
+ cache : ' maven'
51
40
52
41
- name : Build with Maven
53
- run : mvn --batch-mode --errors --show-version verify
42
+ run : mvn --batch-mode --errors --show-version verify site
You can’t perform that action at this time.
0 commit comments