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 3ee9bca commit afcec70Copy full SHA for afcec70
.github/workflows/stability.yml
@@ -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