From 00aa5abc108a30ebe91134778836f76dae2cfd2b Mon Sep 17 00:00:00 2001 From: zjeffer <4633209+zjeffer@users.noreply.github.com> Date: Fri, 17 Jan 2025 00:26:29 +0100 Subject: [PATCH] run other jobs if format-lint fails --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cdb658da..7a0e3bbb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,6 +19,7 @@ jobs: name: Linux needs: - format-lint + if: always() uses: ./.github/workflows/linux.yml secrets: inherit @@ -26,6 +27,7 @@ jobs: name: macOS needs: - format-lint + if: always() uses: ./.github/workflows/macos.yml secrets: inherit @@ -33,5 +35,6 @@ jobs: name: Windows needs: - format-lint + if: always() uses: ./.github/workflows/windows.yml secrets: inherit