Skip to content

Commit afcec70

Browse files
committed
Add stability checks
1 parent 3ee9bca commit afcec70

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/stability.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Stability
2+
3+
on:
4+
schedule:
5+
- cron: '0 0 * * *'
6+
7+
jobs:
8+
v1:
9+
name: ${{ matrix.version }} Swift ${{ matrix.swift }} on ${{ matrix.os }}
10+
runs-on: ${{ matrix.os }}
11+
strategy:
12+
matrix:
13+
os: [ubuntu-latest, macos-latest]
14+
swift: ["5.3"]
15+
version: ["v1"]
16+
steps:
17+
- uses: fwal/setup-swift@${{ matrix.version }}
18+
with:
19+
swift-version: ${{ matrix.swift }}
20+
- name: Swift version
21+
run: swift --version | grep ${{ matrix.swift }} || exit 1

0 commit comments

Comments
 (0)