Skip to content

Commit b015ae0

Browse files
committed
Make sure that stability checks fail
1 parent e95aea0 commit b015ae0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/stability.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ jobs:
88
v1:
99
name: "v1: Swift ${{ matrix.swift }} on ${{ matrix.os }}"
1010
runs-on: ${{ matrix.os }}
11-
continue-on-error: true
1211
strategy:
1312
matrix:
1413
os: [ubuntu-latest, macos-latest]
@@ -18,11 +17,11 @@ jobs:
1817
with:
1918
swift-version: ${{ matrix.swift }}
2019
- name: Swift version
20+
if: always()
2121
run: swift --version | grep ${{ matrix.swift }} || exit 1
2222
main:
2323
name: "main: Swift ${{ matrix.swift }} on ${{ matrix.os }}"
2424
runs-on: ${{ matrix.os }}
25-
continue-on-error: true
2625
strategy:
2726
matrix:
2827
os: [ubuntu-latest, macos-latest]
@@ -32,4 +31,5 @@ jobs:
3231
with:
3332
swift-version: ${{ matrix.swift }}
3433
- name: Swift version
34+
if: always()
3535
run: swift --version | grep ${{ matrix.swift }} || exit 1

0 commit comments

Comments
 (0)