Files
carrramba-encore-rate/backend/.woodpecker/.lint.yaml
Adrien 10ecd40ef5
All checks were successful
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/pr/lint Pipeline was successful
💚 Force the linters to run even if the previous one fails.
2024-02-11 17:52:28 +01:00

20 lines
339 B
YAML

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