Skip to content

Commit 7444ea0

Browse files
committed
chore: update test workflow to account for image updates
1 parent 1100cf5 commit 7444ea0

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

.github/workflows/test.yml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ jobs:
1717
run: |
1818
sudo xcode-select -switch /Applications/Xcode_16.3.app
1919
20+
- name: Download iOS Simulator Runtime
21+
run: xcodebuild -downloadPlatform iOS
22+
23+
- name: Download tvOS Simulator Runtime
24+
run: xcodebuild -downloadPlatform tvOS
25+
2026
- name: Carthage Bootstrap
2127
run: carthage bootstrap --use-xcframeworks
2228

@@ -26,23 +32,21 @@ jobs:
2632
-project Experiment.xcodeproj \
2733
-scheme Experiment \
2834
-sdk iphonesimulator \
29-
-destination 'platform=iOS Simulator,name=iPhone 16,OS=18.5'
35+
-destination 'platform=iOS Simulator,name=iPhone 16,OS=latest'
3036
3137
- name: macOS Tests
3238
run: |
33-
xcodebuild \
39+
xcodebuild test \
3440
-project Experiment.xcodeproj \
3541
-scheme Experiment \
3642
-sdk macosx \
37-
-destination 'platform=macOS' \
38-
test
43+
-destination 'platform=macOS'
3944
4045
- name: tvOS Tests
4146
run: |
42-
xcodebuild \
47+
xcodebuild test \
4348
-project Experiment.xcodeproj \
4449
-scheme Experiment \
4550
-sdk appletvsimulator \
46-
-destination 'platform=tvOS Simulator,name=Apple TV' \
47-
test
51+
-destination 'platform=tvOS Simulator,name=Apple TV,OS=latest'
4852

0 commit comments

Comments
 (0)