File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 5
5
strategy :
6
6
matrix :
7
7
os : [macos-latest, windows-latest]
8
- java : [1. 8]
8
+ java : [8]
9
9
runs-on : ${{ matrix.os }}
10
10
steps :
11
- - uses : actions/checkout@v1
12
- - uses : actions/setup-java@v1
11
+ - uses : actions/checkout@v2
12
+ - uses : actions/setup-java@v2
13
13
with :
14
14
java-version : ${{ matrix.java }}
15
- - uses : eskatos/gradle-command-action@v1
15
+ distribution : ' adopt'
16
+ cache : gradle
17
+ - name : run test
18
+ uses : eskatos/gradle-command-action@v1
16
19
with :
17
- arguments : check
20
+ arguments : test
18
21
- name : Generate Coveralls Test Report
19
22
run : ./gradlew jacocoTestReport coveralls
20
23
env :
21
24
COVERALLS_REPO_TOKEN : ${{secrets.COVERALLS_REPO_TOKEN}}
22
25
CI_NAME : Github Actions
23
26
CI_BRANCH : ${{github.ref}}
24
27
CI_PULL_REQUEST : ${{github.event.pull_request.html_url}}
25
-
26
28
Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ dependencies {
63
63
implementation ' com.fasterxml.jackson.core:jackson-annotations:2.12.+'
64
64
implementation ' com.fasterxml.jackson.datatype:jackson-datatype-joda:2.12.+'
65
65
implementation ' joda-time:joda-time:2.10.+'
66
+ implementation ' org.codehaus.groovy:groovy-all:3.0.9'
66
67
67
68
implementation group : ' org.antlr' , name : ' antlr4' , version : ' 4.8-1'
68
69
implementation group : ' org.antlr' , name : ' antlr4-runtime' , version : ' 4.8-1'
You can’t perform that action at this time.
0 commit comments