Fixes the following linter issue: https://woodpecker-ci.org/docs/usage/linter#event-filter-for-all-steps
12 lines
321 B
YAML
12 lines
321 B
YAML
when:
|
|
- event: push
|
|
|
|
steps:
|
|
pyright:
|
|
image: ghcr.io/astral-sh/uv:python3.11-trixie-slim
|
|
commands:
|
|
- uv tool install pyright
|
|
- uv sync --locked
|
|
- python --version && uv --version && pyright --version
|
|
- echo "------------- running pyright typecheck -------------"
|
|
- uv run pyright
|