Skip to content

Commit 58362db

Browse files
committed
Added missing tool.
1 parent 4ef0b7a commit 58362db

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,10 @@ jobs:
9393
python-version: 3.x
9494
- name: Install uv
9595
uses: astral-sh/setup-uv@v7
96+
- name: Install llvm-cov
97+
uses: taiki-e/install-action@v2
98+
with:
99+
tool: cargo-llvm-cov
96100
- id: prepare-container
97101
name: Prepare docker container
98102
run: docker compose up -d --wait
@@ -103,8 +107,8 @@ jobs:
103107
run: |
104108
set -e
105109
source <(cargo llvm-cov show-env --sh)
106-
export CARGO_TARGET_DIR=$CARGO_LLVM_COV_TARGET_DIR
107-
export CARGO_INCREMENTAL=1
110+
export CARGO_TARGET_DIR="$CARGO_LLVM_COV_TARGET_DIR"
111+
export CARGO_INCREMENTAL="1"
108112
cargo llvm-cov clean --workspace
109113
uv run -- maturin dev --uv
110114
uv run -- pytest -vv -n auto python/tests --cov natsrpy --cov-report xml

0 commit comments

Comments
 (0)