Sha256: e793ae7a3407d8356546954959f8d952c1cef3121e3f9fc5a1855b150c93c498

Contents?: true

Size: 950 Bytes

Versions: 2

Compression:

Stored size: 950 Bytes

Contents

os: linux
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
jobs:
  include:
    - rvm: 2.7
      script:
        - bundle exec rake spec

    - rvm: 2.6
      script:
        - bundle exec rubocop
        - bundle exec rubycritic --no-browser -f console
        - bundle exec rake spec
        - bundle exec rake commits

    - 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.18 .travis.yml
facter-4.0.17 .travis.yml