-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (29 loc) · 734 Bytes
/
Copy pathci.yml
File metadata and controls
35 lines (29 loc) · 734 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
27
28
29
30
31
32
33
34
35
name: CI
on:
push:
branches: [main]
pull_request:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build (iOS)
runs-on: macos-15
steps:
- uses: actions/checkout@v4
- name: Select Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- name: Build library
run: >
xcodebuild build
-scheme RulerPicker
-destination 'generic/platform=iOS Simulator'
- name: Build example app
run: >
xcodebuild build
-project Example/RulerPickerDemo.xcodeproj
-scheme RulerPickerDemo
-destination 'generic/platform=iOS Simulator'