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 7df8436 commit c05a084Copy full SHA for c05a084
.github/workflows/coverage-report.yml
@@ -15,6 +15,10 @@ jobs:
15
runs-on: ubuntu-latest
16
17
steps:
18
+ - name: Checkout Repository
19
+ uses: actions/checkout@v4 # Checks-out repository under $GITHUB_WORKSPACE
20
+ with:
21
+ submodules: 'false'
22
23
- name: Download Coverage Artifact
24
uses: actions/download-artifact@v4
@@ -30,10 +34,10 @@ jobs:
30
34
format: coveralls
31
35
32
36
- name: Upload to Codecov
33
- uses: codecov/codecov-action@v4
37
+ uses: codecov/codecov-action@v5
38
with:
39
token: ${{ secrets.CODECOV_TOKEN }}
- file: coverage/coverage.xml
40
+ files: coverage/coverage.json,coverage/coverage.xml
41
fail_ci_if_error: false
42
43
- name: Publish Coverage Report
0 commit comments