0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-06-15 10:58:26 +02:00

Check for success of initial tests on GHA

This commit is contained in:
Neil Alexander 2022-03-24 12:14:35 +00:00 committed by GitHub
parent 3bdda65bc4
commit fe5148c12d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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