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:
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"