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

This commit is contained in:
Suzanne Soy 2021-07-29 01:50:14 +01:00
parent 1dd42e09be
commit c648ec2aad

View File

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