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:
parent
1dd42e09be
commit
c648ec2aad
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue
Block a user