mirror of
https://github.com/deepset-ai/haystack.git
synced 2025-11-09 06:13:43 +00:00
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:
parent
5a256df7cb
commit
8bfaf0a56a
15
.github/workflows/tests.yml
vendored
15
.github/workflows/tests.yml
vendored
@ -315,3 +315,18 @@ jobs:
|
|||||||
- "workflow:${{ github.workflow }}"
|
- "workflow:${{ github.workflow }}"
|
||||||
- "branch:${{ github.ref_name }}"
|
- "branch:${{ github.ref_name }}"
|
||||||
- "url:https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}"
|
- "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!"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user