-
-
Notifications
You must be signed in to change notification settings - Fork 18
26 lines (20 loc) · 556 Bytes
/
ci.yml
File metadata and controls
26 lines (20 loc) · 556 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
name: CI
on: [push]
jobs:
build:
runs-on: macos-26
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Preheat iOS Simulator
uses: futureware-tech/simulator-action@v2
with:
model: 'iPhone 16e'
os_version: '=26.2'
- name: Run unit tests
run: |
xcodebuild \
-project TORoundedButtonExample.xcodeproj \
-scheme TORoundedButtonTests \
-destination 'platform=iOS Simulator,name=iPhone 16e,OS=26.2' \
clean test