Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork499
Update book.yml#1808
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
name:Code Coverage | |
on: | |
push: | |
branches: | |
-master | |
jobs: | |
cover: | |
runs-on:ubuntu-22.04 | |
env: | |
CARGO_TERM_COLOR:always | |
steps: | |
-uses:actions/checkout@v4 | |
-name:Install stable toolchain | |
uses:dtolnay/rust-toolchain@stable | |
with: | |
toolchain:1.86.0 | |
-name:Rust Cache | |
uses:Swatinem/rust-cache@v2 | |
-name:Install cargo-llvm-cov | |
uses:taiki-e/install-action@cargo-llvm-cov | |
-name:Run cargo-tarpaulin | |
run:cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info | |
-name:Upload to codecov.io | |
uses:codecov/codecov-action@v4 | |
with: | |
token:${{secrets.CODECOV_TOKEN}} | |
files:lcov.info | |
fail_ci_if_error:true | |
-name:Archive code coverage results | |
uses:actions/upload-artifact@v4 | |
with: | |
name:code-coverage-report | |
path:cobertura.xml |