|
1
|
# references: |
|
2
|
# * http://www.objc.io/issue-6/travis-ci.html |
|
3
|
# * https://github.com/supermarin/xcpretty#usage |
|
4
|
|
|
5
|
osx_image: xcode7.3 |
|
6
|
language: objective-c |
|
7
|
# cache: cocoapods |
|
8
|
# podfile: Example/Podfile |
|
9
|
# before_install: |
|
10
|
# - gem install cocoapods # Since Travis is not always on latest version |
|
11
|
# - pod install --project-directory=Example |
|
12
|
script: |
|
13
|
- set -o pipefail && xcodebuild test -workspace Example/JomloTableView.xcworkspace -scheme JomloTableView-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty |
|
14
|
- pod lib lint |