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 a53bc75 commit af47c0cCopy full SHA for af47c0c
.github/workflows/cicd.yaml
@@ -58,8 +58,13 @@ jobs:
58
- name: Set up Python3
59
run: uv python install 3
60
61
- - name: Test generating docs
62
- run: make docs
+ - name: Install dependencies
+ run: |
63
+ uv sync --all-extras
64
+ uv run pip install -r requirements/requirements-docs.txt
65
+
66
+ - name: Deploy docs
67
+ run: uv run mkdocs build -f docs/mkdocs.yml
68
69
benchmark:
70
needs: [test]
.github/workflows/deploy_mkdocs.yml
@@ -32,9 +32,6 @@ jobs:
32
- name: Install dependencies
33
run: |
34
uv sync --all-extras
35
-
36
- - name: Install dependencies
37
- run: |
38
uv run pip install -r requirements/requirements-docs.txt
39
40
- name: Deploy docs
0 commit comments