From 10ecd40ef5f989ab37ac9df10f96e2e764f11632 Mon Sep 17 00:00:00 2001 From: Adrien Date: Sun, 11 Feb 2024 17:52:28 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20Force=20the=20linters=20to=20run?= =?UTF-8?q?=20even=20if=20the=20previous=20one=20fails.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/.woodpecker/.lint.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/.woodpecker/.lint.yaml b/backend/.woodpecker/.lint.yaml index 1167f1f..a90a5f6 100644 --- a/backend/.woodpecker/.lint.yaml +++ b/backend/.woodpecker/.lint.yaml @@ -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 ]