File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 34
34
uses : gradle/gradle-build-action@v2
35
35
with :
36
36
arguments : dependencyCheckAnalyze
37
- - name : jacoco- badge-generator
37
+ - name : Generate Jacoco badge
38
38
39
+ with :
40
+ jacoco-csv-file : build/reports/jacoco/test/jacocoTestReport.csv
Original file line number Diff line number Diff line change @@ -52,8 +52,7 @@ configurations {
52
52
}
53
53
}
54
54
55
- group to " com.webfleet"
56
-
55
+ group = " com.webfleet"
57
56
58
57
dependencies {
59
58
// api
@@ -103,8 +102,9 @@ tasks {
103
102
executionData(fileTree(project.buildDir).include(" jacoco/*.exec" ))
104
103
finalizedBy(jacocoTestCoverageVerification)
105
104
reports {
106
- html.required to true
107
- xml.required to true
105
+ xml.required.set(false )
106
+ html.required.set(true )
107
+ csv.required.set(true )
108
108
}
109
109
}
110
110
jacocoTestCoverageVerification {
You can’t perform that action at this time.
0 commit comments