Skip to content

Commit

Permalink
Fix uv command
Browse files Browse the repository at this point in the history
  • Loading branch information
simoncozens committed Sep 19, 2024
1 parent 037fee3 commit 623a92d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
enable-cache: true
- name: Install Python deps
run: |
uv venv venv; . venv/bin/activate ; uv install -r requirements.txt
uv venv venv; . venv/bin/activate ; uv pip install -r requirements.txt
touch venv/touchfile
- name: Do first-run script if necessary
run: make .init.stamp
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
enable-cache: true
- name: Install Python deps
run: |
uv venv venv; . venv/bin/activate ; uv install -r requirements.txt
uv venv venv; . venv/bin/activate ; uv pip install -r requirements.txt
touch venv/touchfile
- name: Check with fontbakery
run: |
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
enable-cache: true
- name: Install Python deps
run: |
uv venv venv; . venv/bin/activate ; uv install -r requirements.txt
uv venv venv; . venv/bin/activate ; uv pip install -r requirements.txt
touch venv/touchfile
- name: Make proof
run: |
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
enable-cache: true
- name: Install Python deps
run: |
uv venv venv; . venv/bin/activate ; uv install -r requirements.txt
uv venv venv; . venv/bin/activate ; uv pip install -r requirements.txt
touch venv/touchfile
- name: Regression test
run: . venv/bin/activate; python3 -m notoqa.regression
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
enable-cache: true
- name: Install Python deps
run: |
uv venv venv; . venv/bin/activate ; uv install -r requirements.txt
uv venv venv; . venv/bin/activate ; uv pip install -r requirements.txt
touch venv/touchfile
- name: Rebuild website
run: . venv/bin/activate; python3 -m notobuilder.ghpages
Expand Down

0 comments on commit 623a92d

Please sign in to comment.