Skip to content

Commit 27f63e1

Browse files
author
Rob Amos
committed
More cleanup
1 parent 6dfa98b commit 27f63e1

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/ios-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
build-ios:
4949
runs-on: ubuntu-latest
5050
name: iOS Tests
51-
if: ${{ needs.check-changes.outputs.changed == 'true' }}
51+
if: ${{ always() && needs.check-changes.outputs.changed == 'true' }}
5252
needs: [ build-ios-matrix, check-changes ]
5353
steps:
5454
- name: Check build matrix status

.github/workflows/linux-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
test:
4949
runs-on: ubuntu-latest
5050
name: Linux Tests
51-
if: ${{ needs.check-changes.outputs.changed == 'true' }}
51+
if: ${{ always() && needs.check-changes.outputs.changed == 'true' }}
5252
needs: [ matrix, check-changes ]
5353
steps:
5454
- name: Check build matrix status

.github/workflows/macos-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
build-macos:
4949
runs-on: ubuntu-latest
5050
name: macOS Tests
51-
if: ${{ needs.check-changes.outputs.changed == 'true' }}
51+
if: ${{ always() && needs.check-changes.outputs.changed == 'true' }}
5252
needs: [ build-macos-matrix, check-changes ]
5353
steps:
5454
- name: Check build matrix status

.github/workflows/tvos-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
build-tvos:
4949
runs-on: ubuntu-latest
5050
name: tvOS Tests
51-
if: ${{ needs.check-changes.outputs.changed == 'true' }}
51+
if: ${{ always() && needs.check-changes.outputs.changed == 'true' }}
5252
needs: [ build-tvos-matrix, check-changes ]
5353
steps:
5454
- name: Check build matrix status

.github/workflows/visionos-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
build-visionos:
4949
runs-on: ubuntu-latest
5050
name: visionOS Tests
51-
if: ${{ needs.check-changes.outputs.changed == 'true' }}
51+
if: ${{ always() && needs.check-changes.outputs.changed == 'true' }}
5252
needs: [ build-visionos-matrix, check-changes ]
5353
steps:
5454
- name: Check build matrix status

.github/workflows/watchos-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
build-watchos:
4949
runs-on: ubuntu-latest
5050
name: watchOS Tests
51-
if: ${{ needs.check-changes.outputs.changed == 'true' }}
51+
if: ${{ always() && needs.check-changes.outputs.changed == 'true' }}
5252
needs: [ build-watchos-matrix, check-changes ]
5353
steps:
5454
- name: Check build matrix status

0 commit comments

Comments
 (0)