We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2eac469 commit b0a7321Copy full SHA for b0a7321
.github/workflows/build.yml
@@ -60,15 +60,10 @@ jobs:
60
cd dbAndCsvBatch
61
../gradlew
62
63
- - name: Upload coverage to Codecov
64
- uses: codecov/codecov-action@v4
+ - name: Upload coverage reports to Codecov
+ uses: codecov/codecov-action@v5
65
with:
66
- files: ./skeletonBatch/build/reports/jacoco/test/jacocoTestReport.xml,./dbAndCsvBatch/build/reports/jacoco/test/jacocoTestReport.xml
67
-
68
- - name: Archive Test Reports
69
- if: always()
70
- uses: actions/upload-artifact@v3
71
- with:
72
- name: test-reports
73
- path: build/reports/tests/test
74
+ token: ${{ secrets.CODECOV_TOKEN }}
+ files: |
+ ./skeletonBatch/build/reports/jacoco/test/jacocoTestReport.xml,
+ ./dbAndCsvBatch/build/reports/jacoco/test/jacocoTestReport.xml
0 commit comments