1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
# Send builds to container-based infrastructure
# http://docs.travis-ci.com/user/workers/container-based-infrastructure/
dist: trusty
sudo: false
language: ruby
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.7
- 2.4.4
- 2.5.1
- ruby-head
- jruby-9.2.0.0
- jruby-head
- rbx-3.99
script:
- bundle exec rspec
matrix:
allow_failures:
- rvm: rbx-3.99
before_install:
- gem update --system
- gem install bundler
addons:
code_climate:
repo_token: 20a1139ef1830b4f813a10a03d90e8aa179b5226f75e75c5a949b25756ebf558
|