Skip to content

Commit feb6b18

Browse files
committed
Try using a virtualenv
1 parent 5c50e33 commit feb6b18

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,21 @@ jobs:
4141
- name: "Install dependencies"
4242
env:
4343
UV_CACHE_DIR: ~/.cache/uv
44+
VIRTUAL_ENV: ./.venv
4445
run: |
4546
python -m pip install --upgrade uv
47+
uv venv
4648
python -m uv pip install --upgrade --editable .[dev]
4749
4850
- name: "Lint"
51+
env:
52+
VIRTUAL_ENV: ./.venv
4953
run: |
5054
make lint
5155
5256
- name: "Run tests"
57+
env:
58+
VIRTUAL_ENV: ./.venv
5359
run: |
5460
# We run tests against "." and not the tests directory as we test the README
5561
# and documentation.

0 commit comments

Comments
 (0)