CI: create uv venv before installing deps

This commit is contained in:
Justin Bollinger
2026-01-31 23:31:30 -05:00
parent 92200a7964
commit 96896dea82
+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: