Skip to content

Commit 5c02c1f

Browse files
committed
fix(ci): Added missing rustup component
1 parent 7d7e643 commit 5c02c1f

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/coverage.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,15 @@ jobs:
3131
with:
3232
python-version: "3.13"
3333

34-
- name: Install grcov
35-
run: cargo install grcov --force
34+
- name: Install grcov and llvm-tools
35+
run: |
36+
cargo install grcov --force
37+
rustup component add llvm-tools
3638
3739
- name: Run tests and generate coverage report
3840
run: |
41+
# Create directory for coverage reports
42+
mkdir -p ./coverage
3943
# Set flags for coverage generation
4044
export CARGO_INCREMENTAL=0
4145
export RUSTFLAGS="-Cinstrument-coverage"

0 commit comments

Comments
 (0)