diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2022-03-24 12:14:35 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-24 12:14:35 +0000 |
commit | fe5148c12da417ff9aba59a9ceb1e382d6b7507e (patch) | |
tree | 846315d0664c60e0e8f2a2c09010ee6bb25209c4 /.github | |
parent | 3bdda65bc4cffe5c0c0b7db20e99c16afe929b8c (diff) |
Check for success of initial tests on GHA
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/dendrite.yml | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/.github/workflows/dendrite.yml b/.github/workflows/dendrite.yml index c1bd5a05..79d8ddde 100644 --- a/.github/workflows/dendrite.yml +++ b/.github/workflows/dendrite.yml @@ -158,11 +158,15 @@ jobs: # Dummy step to gate other tests on without repeating the whole list initial-tests-done: - name: Initial tests passed - needs: [ lint, test, build, build_windows ] - runs-on: ubuntu-latest - steps: - - run: "true" + name: Initial tests passed + needs: [ lint, test, build, build_windows ] + runs-on: ubuntu-latest + if: ${{ !cancelled() }} # Run this even if prior jobs were skipped + steps: + - name: Check initial tests passed + uses: re-actors/alls-green@release/v1 + with: + jobs: ${{ toJSON(needs) }} # run database upgrade tests upgrade_test: |