Skip to content

Commit 8af28c0

Browse files
committed
Try to fix Docs GitHub Action workflow
1 parent fbbfe73 commit 8af28c0

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/docs.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,14 @@ jobs:
1818
steps:
1919
- name: Check out
2020
uses: actions/checkout@v4
21-
22-
- name: Set up the environment
23-
uses: ./.github/actions/setup-python-env
2421
with:
25-
extra-dependencies: --group docs
22+
fetch-depth: 0 # Needed for setuptools_scm to work correctly
2623

27-
- name: Check if documentation can be built
24+
- name: Install uv and set the python version
25+
uses: astral-sh/setup-uv@v6
26+
with:
27+
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
2831
run: uv run mkdocs build -s

0 commit comments

Comments
 (0)