yasaichi/actionview-consistent_fallback

View on GitHub
.travis.yml

Summary

Maintainability
Test Coverage
language: ruby
sudo: false
rvm:
  - 2.3.4
  - 2.4.1
gemfile:
  - gemfiles/actionview_4_1.gemfile
  - gemfiles/actionview_4_2.gemfile
  - gemfiles/actionview_5_0.gemfile
  - gemfiles/actionview_5_1.gemfile
matrix:
  exclude:
    - rvm: 2.4.1
      gemfile: gemfiles/actionview_4_1.gemfile
branches:
  only:
    - master
before_install:
  - gem update --system --no-doc
before_script:
  - 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
after_script:
  - if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT; fi