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 fbe1e27 commit cfaa139Copy full SHA for cfaa139
.github/workflows/build.yml
@@ -66,7 +66,9 @@ jobs:
66
67
- name: Install documentation dependencies and build
68
run: |
69
+ # Install MkDocs and dependencies using pip in a temporary venv
70
+ python3 -m venv temp-docs-env
71
+ source temp-docs-env/bin/activate
72
+ pip install -r docs/requirements.txt
73
cd docs
- uv venv
- uv pip install -r requirements.txt
- uv run mkdocs build --clean --strict
74
+ mkdocs build --clean --strict
0 commit comments