Skip to content

Commit 5a9de65

Browse files
authored
fix(ci): install cargo-tarpaulin via install-action tool input (#2169)
The coverage job used taiki-e/install-action without a `with: tool` input, so cargo-tarpaulin was never installed and the later `cargo tarpaulin` steps failed. Pass `tool: cargo-tarpaulin` to install it.
1 parent 9738e22 commit 5a9de65

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/coverage.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ jobs:
3737
- uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2
3838

3939
- name: Install cargo-tarpaulin
40-
uses: taiki-e/install-action@43aecc8d72668fbcfe75c31400bc4f890f1c5853 # cargo-tarpaulin
40+
uses: taiki-e/install-action@43aecc8d72668fbcfe75c31400bc4f890f1c5853 # v2
41+
with:
42+
tool: cargo-tarpaulin
4143

4244
# `rg` differential tests compare against real ripgrep. Pin the
4345
# binary so coverage does not depend on the runner image package set.

0 commit comments

Comments
 (0)