Browse Source

👷 Add GitHub Action gate/check (#5492)

pull/5851/head
Sviatoslav Sydorenko 2 years ago
committed by GitHub
parent
commit
2583a83f9d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 16
      .github/workflows/test.yml

16
.github/workflows/test.yml

@ -75,3 +75,19 @@ jobs:
with:
name: coverage-html
path: htmlcov
# https://github.com/marketplace/actions/alls-green#why
check: # This job does nothing and is only used for the branch protection
if: always()
needs:
- coverage-combine
runs-on: ubuntu-latest
steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}

Loading…
Cancel
Save