-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.yml
68 lines (64 loc) · 1.49 KB
/
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: RepShops
options:
bundleIdPrefix: com.RepShops
developmentLanguage: ja
deploymentTarget:
iOS: 15.2
xcodeVersion: "13.2.1"
settings:
base:
MARKETING_VERSION: 1.0.0
CURRENT_PROJECT_VERSION: 1
targets:
RepShops:
type: application
platform: iOS
sources:
- RepShops
info:
path: RepShops/Info.plist
properties:
UISupportedInterfaceOrientations: [UIInterfaceOrientationPortrait]
UILaunchStoryboardName: LaunchScreen
entitlements:
path: RepShops/RepShops.entitlements
properties:
com.apple.security.application-groups: group.com.app
postCompileScripts:
- script: |
if which mint >/dev/null; then
mint run swiftlint swiftlint autocorrect --format
mint run swiftlint swiftlint
else
echo "warning: Mint not installed, download from https://github.com/yonaskolb/Mint"
fi
name: Run SwiftLint
RepShopsTests:
type: bundle.unit-test
platform: iOS
sources:
- RepShopsTests
dependencies:
- target: RepShops
RepShopsUITests:
type: bundle.ui-testing
platform: iOS
sources:
- RepShopsUITests
dependencies:
- target: RepShops
schemes:
RepShops:
build:
targets:
RepShops: all
run:
config: Debug
test:
config: Debug
profile:
config: Release
analyze:
config: Debug
archive:
config: Release