From 7ecdcf9123693d8bd0db77497d5e54912f472e7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=ADdia=20Tarcza?= <100163235+diatrcz@users.noreply.github.com> Date: Mon, 9 Feb 2026 16:04:13 +0100 Subject: [PATCH] build: add status check for matrix strategies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: LĂ­dia Tarcza <100163235+diatrcz@users.noreply.github.com> --- .github/workflows/build.yaml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index c4016b52..723b43cc 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -5,7 +5,7 @@ name: build -on: +on: push: branches: ['**'] pull_request: @@ -58,6 +58,20 @@ jobs: - name: Build & Test run: make ci + results: + if: ${{ always() }} + runs-on: ubuntu-latest + name: Final Test Results + needs: [build] + steps: + - run: | + result="${{ needs.build.result }}" + if [[ $result == "success" || $result == "skipped" ]]; then + exit 0 + else + exit 1 + fi + create-release: name: semantic-release if: "github.ref_name == 'main' && github.event_name != 'pull_request'"