Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -228,11 +228,17 @@ jobs:
uses: taiki-e/install-action@cargo-llvm-cov

- name: Generate code coverage
run: cargo llvm-cov --all-features --workspace --branch --doctests --codecov --output-path codecov.json -- --include-ignored
run: cargo llvm-cov --all-features --workspace --branch --no-report -- --include-ignored

- name: Generate code coverage - doctests
run: cargo llvm-cov --all-features --workspace --branch --doc --no-report

- name: Merge code coverage reports
run: cargo llvm-cov report --codecov --output-path codecov.json

- uses: codecov/codecov-action@v5
with:
files: coverage.json
files: codecov.json
flags: rust
fail_ci_if_error: true
env:
Expand Down
Loading