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 ecdbf29 commit a106c1aCopy full SHA for a106c1a
.github/workflows/ci.yml
@@ -71,7 +71,7 @@ jobs:
71
}
72
continue-on-error: true
73
74
- - name: Fail the job if the XamlStyler found unformatted file(s)
+ - name: Fail if necessary
75
if: steps.check-step.outcome == 'failure'
76
run: exit 1
77
@@ -174,6 +174,7 @@ jobs:
174
path: ${{ env.ARTIFACTS_STAGING_DIR }}
175
176
test:
177
+ if: always()
178
needs: [build]
179
runs-on: windows-latest
180
strategy:
@@ -189,6 +190,10 @@ jobs:
189
190
191
steps:
192
193
+ - if: contains(join(needs.*.result, ','), 'failure')
194
+ name: Fail if necessary
195
+ run: exit 1
196
+
197
- name: Checkout the repository
198
uses: actions/checkout@v3
199
0 commit comments