Skip to content

Commit

Permalink
ci: use uv on github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
brycedrennan committed Mar 6, 2024
1 parent eeb07ac commit 29bc8fa
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ jobs:
- name: Install dependencies
run: |
python -m pip install uv
uv pip uninstall torch torchvision xformers triton imaginairy
uv pip sync requirements-dev.txt
uv pip install -e .
uv pip uninstall --system torch torchvision xformers triton imaginairy
uv pip sync --system requirements-dev.txt
uv pip install --system -e .
- name: Test with pytest
timeout-minutes: 30
env:
Expand Down Expand Up @@ -82,8 +82,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install uv
uv pip sync requirements-dev.txt
uv pip install -e .
uv pip sync --system requirements-dev.txt
uv pip install --system -e .
- name: Test with pytest
timeout-minutes: 30
env:
Expand Down

0 comments on commit 29bc8fa

Please sign in to comment.