Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions .github/workflows/code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
enable-cache: true

- name: Sync UV project
run: uv sync --group docs
run: uv sync

- name: Formatting (Ruff)
if: success()
Expand All @@ -50,10 +50,6 @@ jobs:
if: success()
continue-on-error: true
run: uv run make.py pyright

- name: Build Docs
continue-on-error: true
run: uv run make.py docs-full

# This is a second job instead of an extra step because it takes the longest
# So having it as a second job lets it run in parallel to the other checks.
Expand All @@ -75,7 +71,7 @@ jobs:
enable-cache: true

- name: Sync UV Project
run: uv sync --group docs
run: uv sync

- name: build-docs
run: uv run make.py docs-full
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ dev = [
"wheel",
"bottle", # Used for web testing playground
{include-group = "extras"},
{include-group = "docs"},
]

# Testing only
Expand Down
Loading