Skip to content

Commit

Permalink
fix coverage workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tibvdm committed Apr 8, 2024
1 parent 4eee7ef commit 63359ba
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ jobs:
RUSTDOCFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'

- name: Gather coverage information (fa-compression)
id: coverage
id: coverage-fa-compression
uses: actions-rs/[email protected]

- name: Upload coverage reports to Codecov (fa-compression)
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ${{ steps.coverage.outputs.report }}
file: ${{ steps.coverage-fa-compression.outputs.report }}
flags: fa-compression
verbose: true
fail_ci_if_error: true
Expand All @@ -51,14 +51,14 @@ jobs:
RUSTDOCFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'

- name: Gather coverage information (sa-mappings)
id: coverage
id: coverage-sa-mappings
uses: actions-rs/[email protected]

- name: Upload coverage reports to Codecov (sa-mappings)
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ${{ steps.coverage.outputs.report }}
file: ${{ steps.coverage-sa-mappings.outputs.report }}
flags: sa-mappings
verbose: true
fail_ci_if_error: true

0 comments on commit 63359ba

Please sign in to comment.