From e59014da791246e0494225124e7173d4103941c6 Mon Sep 17 00:00:00 2001 From: Ricardo Abreu Date: Wed, 7 Jan 2026 02:17:55 +0000 Subject: [PATCH] [ci] Add a job to provide an overall status --- .github/workflows/test.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e876982..5f26d53 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -114,3 +114,13 @@ jobs: disable_search: true flags: unittests fail_ci_if_error: 'true' + + overall-status: + name: Overall Status + runs-on: ubuntu-latest + needs: build + if: always() + steps: + - name: Check overall workflow status, to provide a single pass/fail result + if: needs.build.result != 'success' + run: exit 1