Files
carrramba-encore-rate/backend/.woodpecker/.lint.yaml
Adrien 6687c2de15
Some checks failed
ci/woodpecker/push/lint Pipeline failed
ci/woodpecker/pr/lint Pipeline failed
💚 Run backend linters on commits only
Try to force the linters to run even if the previous one fails.
2024-02-11 17:48:01 +01:00

20 lines
330 B
YAML

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