-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.travis.yml
More file actions
23 lines (18 loc) · 738 Bytes
/
.travis.yml
File metadata and controls
23 lines (18 loc) · 738 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
language: swift
matrix:
include:
- osx_image: xcode12.2
before_install:
# - echo "git \"file://$($(dirname $0); pwd)\"" >> Cartfile
- cat Cartfile
- brew update
- brew outdated swiftlint || brew upgrade swiftlint
# - carthage update --platform iOS
- ./carthage.sh update --platform iOS
script:
- xcodebuild -scheme RxScreenProtectKit -sdk iphonesimulator -destination 'platform=iOS Simulator,OS=14.2,name=iPhone 12 Pro' -configuration Debug test | xcpretty -c
- swiftlint
after_success:
- bash <(curl -s https://codecov.io/bash) -t 31ae53bc-db30-4cd8-a1cf-7bca2026a5ea
# https://docs.travis-ci.com/user/reference/osx/#xcode-version
# https://docs.travis-ci.com/user/languages/objective-c/