Skip to content

Commit 02356d0

Browse files
committed
github: workflows: Use UV instead of PIP
1 parent a5d3a83 commit 02356d0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/build-test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@ jobs:
2222
python -m venv .venv
2323
. .venv/bin/activate
2424
pip install --upgrade pip
25-
pip install flake8 pytest
26-
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
25+
pip install uv
26+
uv pip install flake8 pytest
27+
if [ -f requirements.txt ]; then uv pip install -r requirements.txt; fi
2728
- name: Archive virtualenv
2829
run: tar czf venv.tar.gz .venv
2930
- name: Upload virtualenv artifact

0 commit comments

Comments
 (0)