Sha256: 1c1d8ada5a15c59493b068c4b262212def5fd795da1f6ade506dddf0f3ef7333

Contents?: true

Size: 952 Bytes

Versions: 2

Compression:

Stored size: 952 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 rake spec

    - rvm: 2.6
      env: COMMIT_CHECK=true
      script:
        - 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.20 .travis.yml
facter-4.0.19 .travis.yml