Skip to content

Commit 6e7ea6c

Browse files
authored
Add iOS Simulator preheat step to CI workflow
1 parent af6cf90 commit 6e7ea6c

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,16 @@ jobs:
1111
- name: Checkout
1212
uses: actions/checkout@v4
1313

14+
- name: Preheat iOS Simulator
15+
uses: futureware-tech/simulator-action@v2
16+
with:
17+
model: 'iPhone 16e'
18+
os_version: '=18.6'
19+
1420
- name: Run unit tests
1521
run: |
1622
xcodebuild \
1723
-project TORoundedButtonExample.xcodeproj \
1824
-scheme TORoundedButtonTests \
19-
-destination 'platform=iOS Simulator,name=iPhone Air' \
25+
-destination 'platform=iOS Simulator,name=iPhone 16e,OS=18.6' \
2026
clean test

0 commit comments

Comments
 (0)