Sha256: 0358a3654fce639ed9381dd930285c04b4488748c49dbef296befae03a78e792

Contents?: true

Size: 857 Bytes

Versions: 2

Compression:

Stored size: 857 Bytes

Contents

sudo: false
language: ruby
cache:
  bundler: true
branches:
  only:
    - master
before_install:
  - gem update --system --force
  - gem install bundler
  - bundle install
  - 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
matrix:
  include:
    - rvm: 2.6
      script:
        - bundle exec rubocop
        - bundle exec rubycritic --no-browser -f console
        - bundle exec rake spec

    - rvm: 2.5
      script:
        - bundle exec rake spec

    - rvm: 2.4
      script:
        - bundle exec rake spec

    - rvm: 2.3
      script:
        - bundle exec rake spec

    - rvm: jruby-head
      script:
        - bundle exec rake spec
after_script:
  - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
facter-4.0.8.pre .travis.yml
facter-4.0.7.pre .travis.yml