Sha256: 6b25daf5229bcb069a93a9522348117fb989610dd2b5586af36a0331967ffeb8

Contents?: true

Size: 1.19 KB

Versions: 1

Compression:

Stored size: 1.19 KB

Contents

sudo: false
language: ruby
cache: bundler

notifications:
  email: false

before_install:
  - gem install bundler

before_script:
  # Only generate coverage report for the specified job
  - if [ "$CC_REPORT" == "true" ]; then curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter; fi
  - if [ "$CC_REPORT" == "true" ]; then chmod +x ./cc-test-reporter; fi
  - if [ "$CC_REPORT" == "true" ]; then ./cc-test-reporter before-build; fi
script:
  - bundle exec rake
  - if [ "$CC_REPORT" == "true" ]; then ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT; fi

matrix:
  fast_finish: true
  include:
    - rvm: ruby-head
      gemfile: gemfiles/railsmaster.gemfile
    - rvm: jruby-9.2.8.0
      gemfile: gemfiles/jruby.gemfile
    - rvm: 2.7
      gemfile: Gemfile
    - rvm: 2.6.5
      gemfile: Gemfile
    - rvm: 2.5.7
      gemfile: Gemfile
    - rvm: 2.4.9
      gemfile: gemfiles/activerecord42.gemfile
    - rvm: truffleruby-head
      gemfile: Gemfile
  allow_failures:
    - rvm: ruby-head
      gemfile: gemfiles/railsmaster.gemfile
    - rvm: jruby-9.2.8.0
      gemfile: gemfiles/jruby.gemfile
    - rvm: truffleruby-head
      gemfile: Gemfile

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
clowne-1.2.0 .travis.yml