-
Notifications
You must be signed in to change notification settings - Fork 0
27 lines (27 loc) · 792 Bytes
/
Copy pathtest.yml
File metadata and controls
27 lines (27 loc) · 792 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
on:
push:
branches:
- master
pull_request:
branches:
- master
name: CI
jobs:
test:
name: Test
runs-on: macos-latest
strategy:
matrix:
destination: ['platform=iOS Simulator,OS=latest,name=iPad Pro (9.7-inch)']
steps:
- name: Checkout
uses: actions/checkout@master
# - name: Force Xcode 13
# run: sudo xcode-select -s '/Applications/Xcode_13.4.1.app/Contents/Developer'
- name: Get dependencies
run: pod install
- name: Build and test
run: |
xcodebuild clean test -workspace Radio.xcworkspace -scheme radio -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO
env:
destination: ${{ matrix.destination }}