File tree Expand file tree Collapse file tree 2 files changed +54
-0
lines changed Expand file tree Collapse file tree 2 files changed +54
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Cross-Version
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+
7
+ test_java :
8
+ name : Java ${{ matrix.java }}
9
+ strategy :
10
+ fail-fast : false
11
+ matrix :
12
+ java : [14, 15, 16-ea]
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ - uses : actions/checkout@v2
16
+ - name : Setup Java
17
+ uses : actions/setup-java@v1
18
+ with :
19
+ java-version : ${{ matrix.java }}
20
+ - name : Cache Maven Repository
21
+ uses : actions/cache@v2
22
+ with :
23
+ path : ~/.m2
24
+ key : ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
25
+ restore-keys : ${{ runner.os }}-maven
26
+ - name : Test
27
+ run : ./mvnw -V --no-transfer-progress -e clean verify javadoc:javadoc
Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+
7
+ test_os :
8
+ name : OS ${{ matrix.os }}
9
+ strategy :
10
+ fail-fast : false
11
+ matrix :
12
+ os : [ubuntu-latest, macOS-latest, windows-latest]
13
+ runs-on : ${{ matrix.os }}
14
+ steps :
15
+ - uses : actions/checkout@v2
16
+ - name : Setup Java
17
+ uses : actions/setup-java@v1
18
+ with :
19
+ java-version : 11
20
+ - name : Cache Maven Repository
21
+ uses : actions/cache@v2
22
+ with :
23
+ path : ~/.m2
24
+ key : ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
25
+ restore-keys : ${{ runner.os }}-maven
26
+ - name : Test
27
+ run : ./mvnw -V --no-transfer-progress -e clean verify javadoc:javadoc
You can’t perform that action at this time.
0 commit comments