summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 75df415f578bfd67e182a264dc9ac83c23036e97 (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
25
26
27
28
29
30
31
32
33
34
---
language: ruby
dist: trusty
sudo: false
cache: bundler
script: "bundle exec rake test"
rvm:
  - 2.0
  - 2.1
  - 2.2
  - 2.3
  - ruby-head
  - rbx-3.81
  - jruby-19mode # JRuby in 1.9 mode
  - jruby-head

notifications:
  email: false
matrix:
  allow_failures:
    - rvm: 1.9
    - rvm: ruby-head
    - rvm: rbx-3.81
    - rvm: jruby-19mode # JRuby in 1.9 mode
    - rvm: jruby-head
  fast_finish: true
  include:
    - rvm: 1.9
      before_install:
        - "gem update --system -N"
        - "gem update bundler -N"
    - rvm: 2.4
      script: "bundle exec rake test && bundle exec codeclimate-test-reporter" # Run only for 2.4
bundler_args: --without code_quality