-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (28 loc) · 782 Bytes
/
main.yml
File metadata and controls
33 lines (28 loc) · 782 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
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- '**'
types: [ opened, edited, synchronize ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: |
sudo xcodebuild -scheme MvvmExampleProject\
-project MvvmExampleProject.xcodeproj\
-derivedDataPath ./buildData\
-destination "platform=iOS Simulator,name=iPhone 13,OS=15.2"\
build-for-testing
- name: Tests
run: |
sudo xcodebuild -scheme MvvmExampleProject\
-project MvvmExampleProject.xcodeproj\
-destination "platform=iOS Simulator,name=iPhone 13,OS=15.2"\
-derivedDataPath ./buildData\
test-without-building