Create Job to Track All Required Test Jobs (#19743)

* add tests-completed job to track all matrix jobs completed successfully

* add dependency on setup job for tests-completed job
This commit is contained in:
Marc Boudreau 2023-03-24 10:39:17 -04:00 committed by GitHub
parent fae3e31fda
commit 4749ef9e16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -228,3 +228,10 @@ jobs:
paths: "ui/test-results/qunit/results.xml"
show: "fail"
if: always()
tests-completed:
needs:
- setup
- test-go
runs-on: ${{ fromJSON(needs.setup.outputs.compute-standard) }}
steps:
- run: echo "All Go test successfully passed"