Skip to content

Commit

Permalink
Update codecov CI job to fix it
Browse files Browse the repository at this point in the history
  • Loading branch information
smessmer committed Apr 13, 2024
1 parent 69943bf commit bb5428a
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -225,10 +225,11 @@ jobs:
RUSTDOCFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'
- id: coverage
uses: actions-rs/grcov@v0.1
- uses: codecov/codecov-action@v1
- run: cp ${{ steps.coverage.outputs.report }} /tmp/codecov
- run: cat /tmp/codecov
- uses: codecov/codecov-action@v4
with:
#token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
files: ${{ steps.coverage.outputs.report }}
token: ${{ secrets.CODECOV_TOKEN }}
file: /tmp/codecov
fail_ci_if_error: true
verbose: true

0 comments on commit bb5428a

Please sign in to comment.