We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37a20f6 commit 742c044Copy full SHA for 742c044
2 files changed
.github/workflows/ci.yml
@@ -34,3 +34,9 @@ jobs:
34
with:
35
name: jacoco-html-report
36
path: build/reports/jacoco/test/html
37
+
38
+ - name: Upload coverage reports to Codecov
39
+ uses: codecov/codecov-action@v5
40
+ with:
41
+ token: ${{ secrets.CODECOV_TOKEN }}
42
build.gradle
@@ -60,7 +60,7 @@ jacoco {
60
jacocoTestReport {
61
dependsOn test
62
reports {
63
- xml.required.set(false)
+ xml.required.set(true)
64
csv.required.set(false)
65
html.required.set(true)
66
}
0 commit comments