.travis.yml 289 B

1234567891011
  1. language: ruby
  2. cache: bundler
  3. before_script:
  4. - gem update --system
  5. - gem install bundler
  6. script:
  7. - if [ "$TRAVIS_EVENT_TYPE" != "cron" ]; then bundle exec rake; fi
  8. - if [ "$TRAVIS_EVENT_TYPE" = "cron" ]; then bundle exec thor updates:check --github-token $GH_TOKEN --upload; fi