We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe67fc3 commit 2dc7935Copy full SHA for 2dc7935
.github/workflows/build.yml
@@ -60,12 +60,15 @@ jobs:
60
cd dbAndCsvBatch
61
../gradlew
62
63
+ - name: List coverage files
64
+ run: |
65
+ find . -name "jacocoTestReport.xml"
66
+
67
- name: Upload coverage to Codecov
68
uses: codecov/codecov-action@v4
69
with:
- files: |
- skeletonBatch/build/reports/jacoco/test/jacocoTestReport.xml
- dbAndCsvBatch/build/reports/jacoco/test/jacocoTestReport.xml
70
+ token: ${{ secrets.CODECOV_TOKEN }}
71
+ files: ./skeletonBatch/build/reports/jacoco/test/jacocoTestReport.xml,./dbAndCsvBatch/build/reports/jacoco/test/jacocoTestReport.xml
72
73
- name: Archive Test Reports
74
if: always()
0 commit comments