Skip to content

Commit 418e05e

Browse files
committed
Use docs extras in docs workflow
Update the docs GitHub Actions workflow to install the package with the "docs" extras instead of the full "dev" extras. This ensures only documentation-related dependencies are installed for the MkDocs deploy step, keeping the CI environment leaner and faster.
1 parent 0dfed5c commit 418e05e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Install dependencies
2626
run: |
2727
uv venv
28-
uv pip install -e ".[dev]"
28+
uv pip install -e ".[docs]"
2929
3030
- name: Deploy MkDocs
3131
run: |

0 commit comments

Comments
 (0)