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.
2 parents 6100c43 + b24a0ce commit 4570986Copy full SHA for 4570986
2 files changed
.github/workflows/haskell.yml
@@ -87,9 +87,10 @@ jobs:
87
88
steps:
89
- name: 🧪 Report failure
90
- if: ${{ needs.build-and-test.result == 'failure' }}
+ if: ${{ needs.build-and-test.result != 'success' }}
91
run: |
92
echo "Some jobs failed"
93
+ echo "Result status: ${{ needs.build-and-test.result }}"
94
exit 1
95
96
- name: 🧪 Report success
.github/workflows/windows.yml
@@ -93,9 +93,10 @@ jobs:
- name: "Report failure"
97
98
99
100
101
102
- name: "Report success"
0 commit comments