Skip to content
Open
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
6 changes: 5 additions & 1 deletion .github/workflows/build_addon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,11 @@ jobs:
uv sync

- name: Code checks
run: export SKIP=no-commit-to-branch; uv run pre-commit run --all-files
# Pyright is skipped here for the same reason .pre-commit-config.yaml skips it on
# pre-commit.ci: it needs the NVDA source tree at ../nvda/source (see the extraPaths
# setting in pyproject.toml), which is not available on the runner, so every NVDA
# import is unresolved and the hook can never pass.
run: export SKIP=no-commit-to-branch,pyright; uv run pre-commit run --all-files

- name: building addon
run: uv run scons && uv run scons pot
Expand Down
Loading