vmpooler/.travis.yml
Brandon High d20e2a89b5
Require rubocop checks in Travis
This commit updates Travis to require Rubocop to pass. This is possible
now due to the fixes in #361.
2020-03-05 17:28:33 -08:00

28 lines
477 B
YAML

cache: bundler
sudo: false
language: ruby
matrix:
include:
- rvm: 2.4.9
env: "CHECK=rubocop"
- rvm: 2.4.9
env: "CHECK=test"
- rvm: 2.5.7
env: "CHECK=test"
- rvm: jruby-9.2.9.0
env: "CHECK=test"
- rvm: 2.4.9
env: "CHECK=rubocop"
install:
- gem update --system
- gem install bundler
- bundle --version
- bundle install --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}
script:
- "bundle exec rake $CHECK"