Skip to content

Commit 19040d4

Browse files
committed
Merge branch 'master' of github.com:amayers/NumericText
2 parents 8c76252 + d79a5e0 commit 19040d4

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

.github/workflows/swift.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Swift
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
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+
uses: maxim-lobanov/setup-xcode@1.0
27+
with:
28+
xcode-version: 11.6
29+
- name: Build Xcode 11.6
30+
run: swift build -v
31+
- name: Run tests Xcode 11.6
32+
run: swift test -v

0 commit comments

Comments
 (0)