CI: create uv venv before installing deps

This commit is contained in:
Justin Bollinger
2026-01-31 23:31:30 -05:00
parent 0fdb3005df
commit 2063292937
+3 -1
View File
@@ -23,7 +23,9 @@ jobs:
run: python -m pip install --upgrade pip uv pytest
- name: Install project dependencies
run: uv pip install .
run: |
uv venv
uv pip install .
- name: Run tests
env: