Files
carrramba-encore-rate/backend/.woodpecker/.lint.yaml
Adrien c8732a0375
Some checks failed
ci/woodpecker/push/lint Pipeline failed
ci/woodpecker/pr/lint Pipeline failed
Run Mypy linter on backend pull requests
2024-02-11 17:40:06 +01:00

16 lines
303 B
YAML

steps:
- name: ruff
image: python:3.12-alpine
commands:
- pip install ruff
- ruff --output-format github .
when:
- branch:
exclude: [master, develop, release/*]
- name: mypy
image: python:3.12-alpine
commands: |
pip install mypy
mypy .