💚 Force the linters to run even if the previous one fails.
All checks were successful
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/pr/lint Pipeline was successful

This commit is contained in:
2024-02-11 17:52:28 +01:00
parent 6687c2de15
commit 10ecd40ef5

View File

@@ -6,14 +6,14 @@ when:
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 .
runs_on: [ success, failure ]