File tree 3 files changed +9
-0
lines changed
3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -16,11 +16,17 @@ jobs:
16
16
17
17
steps :
18
18
- uses : actions/checkout@v2
19
+ -
19
20
- name : Set up JDK 1.8
20
21
uses : actions/setup-java@v1
21
22
with :
22
23
java-version : 1.8
24
+
23
25
- name : Grant execute permission for gradlew
24
26
run : chmod +x gradlew
27
+
25
28
- name : Build with Gradle
26
29
run : ./gradlew build
30
+
31
+ - name : Codacy Coverage Reporter
32
+
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ group 'io.visual-regression-tracker.sdk-java'
2
2
version ' 3.1.0'
3
3
4
4
apply plugin : ' java'
5
+ apply plugin : ' jacoco'
5
6
apply plugin : " io.freefair.lombok"
6
7
apply plugin : " com.github.johnrengelman.shadow"
7
8
@@ -34,4 +35,5 @@ dependencies {
34
35
35
36
test {
36
37
useTestNG()
38
+ finalizedBy jacocoTestReport // report is always generated after tests run
37
39
}
Original file line number Diff line number Diff line change 1
1
# This file is generated by the 'io.freefair.lombok' Gradle plugin
2
2
config.stopBubbling = true
3
+ lombok.addLombokGeneratedAnnotation = true
You can’t perform that action at this time.
0 commit comments