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, 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.3.4
36
-
37
- - name : Set up cache for ~./m2/repository
38
- uses : actions/cache@v2.1.6
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.3.0
34
+ - uses : actions/checkout@v2
35
+ - uses : actions/setup-java@v2
48
36
with :
49
37
java-version : ${{ matrix.java }}
50
38
distribution : ' temurin'
39
+ cache : ' maven'
51
40
52
41
- name : Build with Maven
53
- run : mvn install javadoc:javadoc -e -B -V -Pno-tests-if-not-on-osx
42
+ run : mvn install javadoc:javadoc site -e -B -V -Pno-tests-if-not-on-osx
You can’t perform that action at this time.
0 commit comments