.travis.yml 410 B

123456789101112131415
  1. language: objective-c
  2. osx_image: xcode7
  3. branches:
  4. only:
  5. - master
  6. - develop
  7. env:
  8. - LC_CTYPE=en_US.UTF-8 LANG=en_US.UTF-8
  9. before_install:
  10. - gem install xcpretty -N
  11. script:
  12. - set -o pipefail
  13. - xcodebuild -project SnapKit.xcodeproj -scheme "SnapKit iOS" -sdk iphonesimulator
  14. -destination "platform=iOS Simulator,name=iPhone 6" ONLY_ACTIVE_ARCH=NO test | xcpretty -c
  15. - pod lib lint --quick