summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 49230a123c08ab20ec2d075a9eb87f9854d43baf (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
cache: bundler

rvm:
  - 2.6
  - 2.5
  - 2.4
  - 2.3
  - 2.2
  - 2.1
  - ruby-head
  - jruby-9.2.11.1
  - jruby-head
  - truffleruby

matrix:
  fast_finish: true
  include:
    - rvm: 2.7
      name: "Ruby: 2.7 (with Danger and Code Climate)"
      before_script:
        - bundle exec danger
      after_script:
        - bundle exec codeclimate-test-reporter
    - rvm: 2.7
      name: "Integration Tests"
      install:
        - for dir in spec/integration/*; do BUNDLE_GEMFILE=$dir/Gemfile bundle; done
      script:
        - set -e ; for dir in spec/integration/*; do BUNDLE_GEMFILE=$dir/Gemfile bundle exec rspec $dir; done
  allow_failures:
    - rvm: ruby-head
    - rvm: jruby-head
    - rvm: truffleruby