Files
blog.pyaqa.ru/.woodpecker/python_lints.yaml
Sergey Vanyushkin 9f2b5b0772
Some checks failed
ci/woodpecker/push/test_pipeline Pipeline failed
lint pipe fixes
2026-04-19 18:40:55 +03:00

14 lines
245 B
YAML

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