Skip to content

Commit 48c851c

Browse files
committed
add a dependent failure
1 parent 3db63da commit 48c851c

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/test.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,3 +104,12 @@ jobs:
104104
env_vars: TEST_SUBSET
105105
name: ${{ matrix.os }}
106106
fail_ci_if_error: false
107+
108+
all_tests:
109+
if: ${{ always() }}
110+
runs-on: ubuntu-latest
111+
needs: [ ubuntu, windows ]
112+
steps:
113+
- name: Check build matrix status
114+
if: ${{ needs.ubuntu.result != 'success' || needs.windows.result != 'success' }}
115+
run: exit 1

0 commit comments

Comments
 (0)