.travis.yml
sudo: false
env:
global:
- CC_TEST_REPORTER_ID=8308650d2c8d42be10deb3d3e243faac6b5452e40372efacffa2d794777e4d0f
language: ruby
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
cache: bundler
before_install:
- gem install bundler
- gem update --system
- gem --version
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script:
- bundle exec rake test
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT