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

20 lines
401 B
YAML

when:
- event: [push, pull_request]
branch: main
steps:
- name: lint
image: python:3.11
commands:
- pip install uv
- uv sync --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 --only-group types
- uv run mypy .