Skip to content

Commit

Permalink
Update coverage download step
Browse files Browse the repository at this point in the history
  • Loading branch information
dolfinus committed Jun 19, 2024
1 parent 8dfce0f commit 6872bd4
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,9 @@ jobs:
- name: Download all coverage reports
uses: actions/download-artifact@v4
with:
path: reports

- name: Move coverage data to the root folder
run: find reports -type f -exec mv '{}' reports \;
path: reports/
pattern: coverage-*
merge-multiple: true

- name: Generate coverate reports
run: ./combine_coverage.sh
Expand All @@ -117,8 +116,7 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./reports/coverage.xml
fail_ci_if_error: true
# TODO: remove after fixing https://github.com/codecov/codecov-cli/issues/367
plugin: gcov
plugin: noop

- name: All done
run: echo 1

0 comments on commit 6872bd4

Please sign in to comment.