We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f2d4e0 commit 9dfb873Copy full SHA for 9dfb873
.github/workflows/ci.yml
@@ -39,6 +39,6 @@ jobs:
39
uv pip install --group=docs
40
- name: Build HTML and check links
41
run: |
42
- make html
43
- make linkcheck
+ uv run make html
+ uv run make linkcheck
44
working-directory: docs/
.github/workflows/pages.yml
@@ -45,11 +45,11 @@ jobs:
45
46
uv venv
47
echo "$PWD/.venv/bin" >> $GITHUB_PATH
48
- uv pip install -e ".[docs]"
+ uv pip install --group=docs
49
- name: Setup Pages
50
uses: actions/configure-pages@v5
51
- name: Build HTML
52
- run: make html
+ run: uv run make html
53
54
- name: Upload artifact
55
uses: actions/upload-pages-artifact@v3
0 commit comments