Skip to content

Commit 9fe8bb6

Browse files
authored
Update main.yml
1 parent 262fca2 commit 9fe8bb6

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,14 @@ on:
1515

1616
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1717
jobs:
18-
macOS_5_2:
19-
name: Test macOS (5.2)
18+
name: Test iOS
2019
runs-on: macOS-latest
2120
env:
22-
DEVELOPER_DIR: /Applications/Xcode_11.7.app/Contents/Developer
21+
DEVELOPER_DIR: /Applications/Xcode_12.app/Contents/Developer
22+
strategy:
23+
matrix:
24+
destination: ["OS=14.0,name=iPhone 11 Pro"] #, "OS=12.4,name=iPhone XS", "OS=11.4,name=iPhone X", "OS=10.3.1,name=iPhone SE"]
2325
steps:
2426
- uses: actions/checkout@v2
25-
- name: macOS (5.2)
26-
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild -project "SpringText.xcodeproj" -scheme "SpringText iOS" -destination "platform=iOS" clean test | xcpretty
27+
- name: iOS - ${{ matrix.destination }}
28+
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild -project "SpringText.xcodeproj" -scheme "SpringText-Example" -destination "${{ matrix.destination }}" clean test | xcpretty

0 commit comments

Comments
 (0)