forked from hashie/hashie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
38 lines (36 loc) · 818 Bytes
/
.travis.yml
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
35
36
37
38
language: ruby
sudo: false
cache: bundler
rvm:
- 2.5.3
- 2.4.5
- 2.3.8
- 2.2.9
- 2.1.10
- ruby-head
matrix:
include:
- rvm: 2.5.3
name: "Run Danger and Code Climate"
before_script:
- bundle exec danger
after_script:
- bundle exec codeclimate-test-reporter
- rvm: 2.5.3
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
- rvm: 2.6.3
dist: bionic
- rvm: rbx-3
dist: trusty
- rvm: jruby-9.0.5.0
dist: trusty
- rvm: jruby-head
dist: trusty
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-3