Skip to content

Commit

Permalink
Fix README
Browse files Browse the repository at this point in the history
  • Loading branch information
simonwhitaker committed Jul 27, 2024
1 parent 52d32ae commit dd91c24
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,15 @@ shell: /bin/bash
commands:
install-uv:
if: "! command -v uv"
command: pip install uv
run: pip install uv
pip-sync:
needs: install-uv
command: uv pip sync requirements.txt
needs:
- install-uv
run: uv pip sync requirements.txt
pip-compile-and-sync:
needs: install-uv
command: |
needs:
- install-uv
run: |
uv pip compile requirements.in -o requirements.txt
uv pip sync requirements.txt
Expand Down

0 comments on commit dd91c24

Please sign in to comment.