-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.yml
51 lines (51 loc) · 939 Bytes
/
project.yml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Assignment
options:
createIntermediateGroups: true
indentWidth: 4
tabWidth: 4
bundleIdPrefix: "com.monese"
configs:
Debug: debug
Release: release
targets:
Assignment:
type: application
platform: iOS
deploymentTarget: "13.0"
sources:
- path: Assignment
scheme:
testTargets:
- AssignmentTests
gatherCoverageData: true
AssignmentTests:
type: bundle.unit-test
platform: iOS
deploymentTarget: "13.0"
sources:
- path: AssignmentTests
dependencies:
- target: Assignment
schemes:
dev:
build:
targets:
Assignment:
- run
- test
- profile
- analyze
- archive
run:
config: Debug
test:
config: Debug
targets:
- AssignmentTests
gatherCoverageData: true
profile:
config: Debug
analyze:
config: Debug
archive:
config: Debug