summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: a9ae42c78ccea34758eae2e930176b60e004eb91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Passes arguments to bundle install (http://gembundler.com/man/bundle-install.1.html)
#bundler_args: --binstubs
language: ruby

# Specify which ruby versions you wish to run your tests on, each version will be used
rvm:
  - 2.0.0
  - 2.1
  - 2.2
  - 2.3
  - 2.4
  - 2.5
  - 2.6
  - 2.7.0-preview3
  - ruby-head
  - jruby
  - jruby-9.2.7.0
matrix:
  allow_failures:
    - rvm: ruby-head
    - rvm: jruby
    - rvm: jruby-9.2.7.0
script: "bundle exec rake"
sudo: false