.travis.yml 438 B

1234567891011121314151617
  1. osx_image: xcode8.3
  2. language: objective-c
  3. cache:
  4. - bundler
  5. - cocoapods
  6. rvm: 2.3.1
  7. before_install:
  8. - gem uninstall cocoapods -a
  9. - gem install cocoapods -v 1.2.0 # Since Travis is not always on latest version
  10. - gem install xcpretty
  11. - pod install --project-directory=Example --repo-update
  12. script:
  13. - "! git grep ' $'" # Fail on trailing whitespace
  14. - ./test.sh
  15. - pod lib lint FirebaseCommunity.podspec --verbose | tail -40