ci: Add catch-all job in tests.yml (#6419)

* Add catch-all job in tests.yml

* Trigger for testing

* Remove trigger for testing
This commit is contained in:
Silvano Cerza 2023-11-27 12:57:33 +01:00 committed by GitHub
parent 5a256df7cb
commit 8bfaf0a56a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -315,3 +315,18 @@ jobs:
- "workflow:${{ github.workflow }}"
- "branch:${{ github.ref_name }}"
- "url:https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}"
catch-all:
name: Catch-all check
runs-on: ubuntu-latest
# This job will be executed only after all the other tests
# are successful.
# This way we'll be able to mark only this test as required
# and skip it accordingly.
needs:
- integration-tests-linux
- integration-tests-macos
- integration-tests-windows
steps:
- name: Finisher
run: echo "Finish him!"