-
Notifications
You must be signed in to change notification settings - Fork 1
37 lines (31 loc) · 831 Bytes
/
ios-ci.yml
File metadata and controls
37 lines (31 loc) · 831 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
36
name: iOS CI
on:
push:
branches: [main]
paths:
- ios/**
- .github/workflows/ios-ci.yml
pull_request:
branches: [main]
paths:
- ios/**
- .github/workflows/ios-ci.yml
jobs:
ios-build-and-test:
runs-on: macos-latest
defaults:
run:
working-directory: ios
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
env:
XCODE_FLAGS: "CODE_SIGNING_ALLOWED=NO CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY="
DEST: "platform=iOS Simulator,name=iPhone 16"
run: make build CONFIG=Debug
- name: Test
env:
XCODE_FLAGS: "CODE_SIGNING_ALLOWED=NO CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY="
DEST: "platform=iOS Simulator,name=iPhone 16"
run: make test CONFIG=Debug