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 253a8e1 commit 70bb5e7Copy full SHA for 70bb5e7
.github/workflows/build_pages.yml
@@ -14,14 +14,18 @@ jobs:
14
- name: "Set up Python"
15
uses: actions/setup-python@v5
16
with:
17
- python-version: "3.12"
18
- cache: "pip"
+ python-version-file: "pyproject.toml"
19
20
- - name: "Install requirements"
21
- run: python3 -m pip install -r requirements-pages.txt
+ - name: Install uv
+ uses: astral-sh/setup-uv@v1
+ with:
22
+ version: "latest"
23
+
24
+ - name: Install dependencies
25
+ run: uv sync
26
27
- name: "Build pages"
- run: sphinx-build -b html -c ./docs/source/ ./docs/source/ ./docs/latest/
28
+ run: uv run sphinx-build -b html -c ./docs/source/ ./docs/source/ ./docs/latest/
29
30
- name: "Pull any updates"
31
shell: bash
0 commit comments