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 47ded86 commit 93878b7Copy full SHA for 93878b7
1 file changed
.github/workflows/build.yml
@@ -26,3 +26,19 @@ jobs:
26
uses: coverallsapp/github-action@master
27
with:
28
github-token: ${{ secrets.GITHUB_TOKEN }}
29
+
30
+ build-results:
31
+ name: Build results
32
+ if: ${{ always() }}
33
+ runs-on: ubuntu-latest
34
+ needs:
35
+ - build
36
+ steps:
37
+ - run: exit 1
38
+ # see https://stackoverflow.com/a/67532120/4907315
39
+ if: >-
40
+ ${{
41
+ contains(needs.*.result, 'failure')
42
+ || contains(needs.*.result, 'cancelled')
43
+ || contains(needs.*.result, 'skipped')
44
+ }}
0 commit comments