Skip to content

Commit af47c0c

Browse files
committed
do not use makefile
1 parent a53bc75 commit af47c0c

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/cicd.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,13 @@ jobs:
5858
- name: Set up Python3
5959
run: uv python install 3
6060

61-
- name: Test generating docs
62-
run: make docs
61+
- name: Install dependencies
62+
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
6368

6469
benchmark:
6570
needs: [test]

.github/workflows/deploy_mkdocs.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@ jobs:
3232
- name: Install dependencies
3333
run: |
3434
uv sync --all-extras
35-
36-
- name: Install dependencies
37-
run: |
3835
uv run pip install -r requirements/requirements-docs.txt
3936
4037
- name: Deploy docs

0 commit comments

Comments
 (0)