Skip to content

Commit 9dfb873

Browse files
committed
💚 Fix GitHub workflows for uv
1 parent 7f2d4e0 commit 9dfb873

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ jobs:
3939
uv pip install --group=docs
4040
- name: Build HTML and check links
4141
run: |
42-
make html
43-
make linkcheck
42+
uv run make html
43+
uv run make linkcheck
4444
working-directory: docs/

.github/workflows/pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ jobs:
4545
run: |
4646
uv venv
4747
echo "$PWD/.venv/bin" >> $GITHUB_PATH
48-
uv pip install -e ".[docs]"
48+
uv pip install --group=docs
4949
- name: Setup Pages
5050
uses: actions/configure-pages@v5
5151
- name: Build HTML
52-
run: make html
52+
run: uv run make html
5353
working-directory: docs/
5454
- name: Upload artifact
5555
uses: actions/upload-pages-artifact@v3

0 commit comments

Comments
 (0)