Skip to content

Commit

Permalink
use nightly in coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
PSeitz committed May 21, 2024
1 parent 4de39d3 commit 104090c
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 @@ -12,16 +12,16 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Install Rust
run: rustup toolchain install stable
run: rustup toolchain install nightly
- name: Install llvm
run: rustup component add llvm-tools-preview --toolchain stable-x86_64-unknown-linux-gnu
- uses: taiki-e/install-action@cargo-llvm-cov
- name: Generate code coverage normal run
run: cargo llvm-cov --workspace --lcov --output-path lcov1.info
run: cargo +nightly llvm-cov --workspace --lcov --output-path lcov1.info
- name: Generate code coverage all-features
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov2.info
run: cargo +nightly llvm-cov --all-features --workspace --lcov --output-path lcov2.info
- name: Generate code coverage unsafe w. checked-decode
run: cargo llvm-cov --no-default-features --features frame --workspace --lcov --output-path lcov3.info
run: cargo +nightly llvm-cov --no-default-features --features frame --workspace --lcov --output-path lcov3.info
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
Expand Down

0 comments on commit 104090c

Please sign in to comment.