kzccm1d4if10m2xaz1wqy3xar821pp1r-my-site-anaphoric-git.test.suzanne.soy-0.0.1

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit c648ec2aad6d2b2ec72acc729143454d1e855cf6
parent 1dd42e09bef8d0445055f374f88b8395939a237a
Author: Suzanne Soy <jsmaniac.github@suzanne.soy>
Date:   Thu, 29 Jul 2021 01:50:14 +0100

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

Diffstat:
M.github/workflows/ci.yml | 6++++++
1 file changed, 6 insertions(+), 0 deletions(-)

diff --git 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"