From ecf4446e460509c483ee80a095b9190bd41944d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Gronowski?= Date: Thu, 27 Nov 2025 16:01:09 +0100 Subject: [PATCH] gha/validate: Don't fail fast MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Allow other validate checks to finish even if one of them failed. Sometimes a check is faulty and its failure is expected - in such case we want to ignore that one validation fail but still run all the others. Signed-off-by: Paweł Gronowski --- .github/workflows/test.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 009499508d..a7b4fd00d9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -122,7 +122,6 @@ jobs: - validate-prepare - build-dev strategy: - fail-fast: true matrix: script: ${{ fromJson(needs.validate-prepare.outputs.matrix) }} steps: