Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@ jobs:
python -m venv .venv
. .venv/bin/activate
pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install uv
uv pip install flake8 pytest
if [ -f requirements.txt ]; then uv pip install -r requirements.txt; fi
- name: Archive virtualenv
run: tar czf venv.tar.gz .venv
- name: Upload virtualenv artifact
Expand Down