From c648ec2aad6d2b2ec72acc729143454d1e855cf6 Mon Sep 17 00:00:00 2001 From: Suzanne Soy Date: Thu, 29 Jul 2021 01:50:14 +0100 Subject: [PATCH] Create build-status-check job which depdends on all others so that it can be used as a required status check for the main branch --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8778f8a..35188a2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -94,3 +94,9 @@ jobs: run: if $COV; then raco cover -s main -s test -s doc -f codecov -f html -d ~/coverage . || true; fi # TODO: add an option to cover to run the "outer" module too, not just the submodules. # TODO: deploy the coverage info. + build-status-check: + runs-on: ubuntu-latest + needs: build + steps: + - name: build-status-check + run: echo "This job depends on a successful build"