8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ee3d40 commit ae6e8e6Copy full SHA for ae6e8e6
.github/workflows/test.yml
@@ -93,3 +93,22 @@ jobs:
93
- name: Run Tests
94
run: |
95
hatch env run --env ${{ matrix.dependency-set }} run
96
+
97
+ test-complete:
98
+ name: Test complete
99
100
+ needs:
101
+ [
102
+ test,
103
+ test-upstream-and-min-deps,
104
+ ]
105
+ if: always()
106
+ runs-on: ubuntu-latest
107
+ steps:
108
+ - name: Check failure
109
+ if: |
110
+ contains(needs.*.result, 'failure') ||
111
+ contains(needs.*.result, 'cancelled')
112
+ run: exit 1
113
+ - name: Success
114
+ run: echo Success!
0 commit comments