diff --git a/backend/.woodpecker/.lint.yaml b/backend/.woodpecker/.lint.yaml index f2e017a..1167f1f 100644 --- a/backend/.woodpecker/.lint.yaml +++ b/backend/.woodpecker/.lint.yaml @@ -1,15 +1,19 @@ +when: + - event: push + - branch: + exclude: [master, release/*] + 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 . + +runs_on: [ success, failure ]