Skip to content

Commit 3fe45f8

Browse files
authored
fix: install cargo-llvm-cov when not present in cache (#782)
The cargo cache that is setup for the coverage job is also caching cargo-llvm-cov, causing the step to fail on subsequent runs. With this change we will always install the latest version of this crate.
1 parent b944e0e commit 3fe45f8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
- name: Install cargo-llvm-cov
8989
run: |
9090
rustup component add llvm-tools
91-
cargo install cargo-llvm-cov
91+
cargo install --force cargo-llvm-cov
9292
9393
- name: Generate coverage
9494
run: make coverage

0 commit comments

Comments
 (0)