Skip to content

Commit 0bdc100

Browse files
committed
Quote to avoid shellcheck worries
1 parent 1b3362c commit 0bdc100

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/windows-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ jobs:
4343
UV_CACHE_DIR: ~\AppData\Local\uv\Cache
4444
run: |
4545
curl -LsSf https://astral.sh/uv/install.sh | sh
46-
uv venv ~\AppData\Local\.venv
47-
source ~\AppData\Local\.venv
46+
uv venv "~\AppData\Local\.venv"
47+
source "~\AppData\Local\.venv"
4848
uv pip install --upgrade --editable ".[dev]"
4949
5050
- name: "Run tests"
5151
run: |
52-
source ~\AppData\Local\.venv
52+
source "~\AppData\Local\.venv"
5353
# We run tests against "." and not the tests directory as we test the README
5454
# and documentation.
5555
pytest -s -vvv --cov-fail-under 100 --cov=src/ --cov=tests . --cov-report=xml

0 commit comments

Comments
 (0)