Skip to content

Commit 3f3f683

Browse files
committed
Run more often and test both v1 and main
1 parent d689040 commit 3f3f683

File tree

1 file changed

+17
-3
lines changed

1 file changed

+17
-3
lines changed

.github/workflows/stability.yml

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,33 @@ name: Stability
22

33
on:
44
schedule:
5-
- cron: '0 0 * * *'
5+
- cron: '0 */3 * * *'
66

77
jobs:
88
v1:
99
name: ${{ matrix.version }} Swift ${{ matrix.swift }} on ${{ matrix.os }}
1010
runs-on: ${{ matrix.os }}
11+
continue-on-error: true
1112
strategy:
1213
matrix:
1314
os: [ubuntu-latest, macos-latest]
1415
swift: ["5.3"]
15-
version: ["v1"]
1616
steps:
17-
- uses: fwal/setup-swift@${{ matrix.version }}
17+
- uses: fwal/setup-swift@v1
18+
with:
19+
swift-version: ${{ matrix.swift }}
20+
- name: Swift version
21+
run: swift --version | grep ${{ matrix.swift }} || exit 1
22+
master:
23+
name: ${{ matrix.version }} Swift ${{ matrix.swift }} on ${{ matrix.os }}
24+
runs-on: ${{ matrix.os }}
25+
continue-on-error: true
26+
strategy:
27+
matrix:
28+
os: [ubuntu-latest, macos-latest]
29+
swift: ["5.3"]
30+
steps:
31+
- uses: fwal/setup-swift@master
1832
with:
1933
swift-version: ${{ matrix.swift }}
2034
- name: Swift version

0 commit comments

Comments
 (0)