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.
always
1 parent d2afd5d commit 51b7209Copy full SHA for 51b7209
.github/workflows/ci.yml
@@ -57,10 +57,9 @@ jobs:
57
environment-paths: "${{ toJSON(matrix.env-paths) }}"
58
- name: evaluate failures
59
if: |
60
- always()
61
- && (
62
- (failure() && ${{ matrix.expected-failure }} == "false")
63
- || (success() && ${{ matrix.expected-failure }} == "true")
+ (
+ (failure() && ${{ matrix.expected-failure }} != "true")
+ || (success() && ${{ matrix.expected-failure }} != "false")
64
)
65
shell: bash -l {0}
66
run: exit 1
0 commit comments