We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8c76252 + d79a5e0 commit 19040d4Copy full SHA for 19040d4
1 file changed
.github/workflows/swift.yml
@@ -0,0 +1,32 @@
1
+name: Swift
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
12
+ runs-on: macos-latest
13
14
+ steps:
15
+ - uses: actions/checkout@v2
16
17
+ - name: Switch to Xcode 12.0
18
+ uses: maxim-lobanov/setup-xcode@1.0
19
+ with:
20
+ xcode-version: 12.0
21
+ - name: Build Xcode 12.0
22
+ run: swift build -v
23
+ - name: Run tests Xcode 12.0
24
+ run: swift test -v
25
+ - name: Switch to Xcode 11.6
26
27
28
+ xcode-version: 11.6
29
+ - name: Build Xcode 11.6
30
31
+ - name: Run tests Xcode 11.6
32
0 commit comments