File tree Expand file tree Collapse file tree 3 files changed +67
-0
lines changed Expand file tree Collapse file tree 3 files changed +67
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : MacOS
2
+
3
+ on :
4
+ push :
5
+ branches : [ master ]
6
+ pull_request :
7
+ branches : [ master ]
8
+
9
+ jobs :
10
+ build :
11
+ runs-on : macos-latest
12
+
13
+ steps :
14
+ - uses : actions/checkout@v2
15
+ - name : Set up JDK 11
16
+ uses : actions/setup-java@v1
17
+ with :
18
+ java-version : 11
19
+ - name : Build with Maven
20
+ run : mvn install
Original file line number Diff line number Diff line change
1
+ name : Ubuntu
2
+
3
+ on :
4
+ push :
5
+ branches : [ master ]
6
+ pull_request :
7
+ branches : [ master ]
8
+
9
+ jobs :
10
+ build :
11
+ runs-on : ubuntu-latest
12
+
13
+ steps :
14
+ - uses : actions/checkout@v2
15
+ - name : Set up JDK 11
16
+ uses : actions/setup-java@v1
17
+ with :
18
+ java-version : 11
19
+ - name : Build with Maven
20
+ run : mvn install
Original file line number Diff line number Diff line change
1
+ name : Windows
2
+
3
+ on :
4
+ push :
5
+ branches : [ master ]
6
+ pull_request :
7
+ branches : [ master ]
8
+
9
+ jobs :
10
+ build :
11
+ runs-on : windows-latest
12
+
13
+ steps :
14
+ - uses : actions/checkout@v2
15
+ - name : Set up JDK 11
16
+ uses : actions/setup-java@v1
17
+ with :
18
+ java-version : 11
19
+ - name : Build with Maven and generate coverage report
20
+ env :
21
+ GITHUB_USERNAME : williamniemiec
22
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
23
+ run : mvn --file pom.xml jacoco:prepare-agent install jacoco:report
24
+ - uses : codecov/codecov-action@v1
25
+ with :
26
+ file : ./**/target/site/jacoco/jacoco.xml
27
+ name : codecov
You can’t perform that action at this time.
0 commit comments