Skip to content

Commit c05a084

Browse files
authored
Update codecov.yml (#846)
* Update codecov.yml Add path fixes to enable correct processing of coverage reports by codecov. * Update codecov.yml Fix missing dash * Update coverage-report.yml * Update codecov.yml * Update coverage-report.yml * Update coverage-report.yml Checkout repository for coverage reports to have filetree available
1 parent 7df8436 commit c05a084

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/coverage-report.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18+
- name: Checkout Repository
19+
uses: actions/checkout@v4 # Checks-out repository under $GITHUB_WORKSPACE
20+
with:
21+
submodules: 'false'
1822

1923
- name: Download Coverage Artifact
2024
uses: actions/download-artifact@v4
@@ -30,10 +34,10 @@ jobs:
3034
format: coveralls
3135

3236
- name: Upload to Codecov
33-
uses: codecov/codecov-action@v4
37+
uses: codecov/codecov-action@v5
3438
with:
3539
token: ${{ secrets.CODECOV_TOKEN }}
36-
file: coverage/coverage.xml
40+
files: coverage/coverage.json,coverage/coverage.xml
3741
fail_ci_if_error: false
3842

3943
- name: Publish Coverage Report

0 commit comments

Comments
 (0)