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 fbbfe73 commit 8af28c0Copy full SHA for 8af28c0
.github/workflows/docs.yml
@@ -18,11 +18,14 @@ jobs:
18
steps:
19
- name: Check out
20
uses: actions/checkout@v4
21
-
22
- - name: Set up the environment
23
- uses: ./.github/actions/setup-python-env
24
with:
25
- extra-dependencies: --group docs
+ fetch-depth: 0 # Needed for setuptools_scm to work correctly
26
27
- - name: Check if documentation can be built
+ - name: Install uv and set the python version
+ uses: astral-sh/setup-uv@v6
+ with:
+ python-version: "3.13"
28
+ - name: Install the project
29
+ run: uv sync --group docs
30
+ - name: Check if the MkDocs documentation can be built
31
run: uv run mkdocs build -s
0 commit comments