Files
blog.pyaqa.ru/.woodpecker/lints.yaml
Sergey Vanyushkin fd5e6a5dcb
Some checks failed
ci/woodpecker/push/tests Pipeline failed
ci/woodpecker/push/lints Pipeline was successful
lint pipe fixes
2026-04-19 19:25:10 +03:00

20 lines
419 B
YAML

when:
- event: [push, pull_request]
branch: main
steps:
- name: lint
image: python:3.11
commands:
- pip install uv
- uv sync --no-dev --only-group lints
- uv run black --check .
- uv run ruff check .
- uv run isort --check-only .
- name: types
image: python:3.11
commands:
- pip install uv
- uv sync --no-dev --only-group types
- uv run mypy .