Skip to content

Commit 7f6598e

Browse files
committed
Put venv in /home/runner
1 parent c8622bb commit 7f6598e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,18 +44,18 @@ jobs:
4444
UV_CACHE_DIR: /home/runner/.cache/uv
4545
run: |
4646
curl -LsSf https://astral.sh/uv/install.sh | sh
47-
uv venv
48-
source ./.venv/bin/activate
47+
uv /home/runner/.venv
48+
source /home/runner/.venv/bin/activate
4949
uv pip install --upgrade --editable ".[dev]"
5050
5151
- name: "Lint"
5252
run: |
53-
source ./.venv/bin/activate
53+
source /home/runner/.venv/bin/activate
5454
make lint
5555
5656
- name: "Run tests"
5757
run: |
58-
source ./.venv/bin/activate
58+
source /home/runner/.venv/bin/activate
5959
# We run tests against "." and not the tests directory as we test the README
6060
# and documentation.
6161
pytest -s -vvv --cov-fail-under 100 --cov=src/ --cov=tests . --cov-report=xml

0 commit comments

Comments
 (0)