-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.travis.yml
More file actions
39 lines (33 loc) · 691 Bytes
/
.travis.yml
File metadata and controls
39 lines (33 loc) · 691 Bytes
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
39
language: ruby
cache: bundler
sudo: false
rvm:
- "2.3.8"
- "2.4.5"
- "2.5.3"
- "2.6.1"
- "2.7.0"
- "ruby-head"
gemfile:
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
- gemfiles/rails_6.0.gemfile
matrix:
allow_failures:
- rvm: "ruby-head"
exclude:
- rvm: 2.7.0
gemfile: gemfiles/rails_4.2.gemfile
- rvm: 2.3.8
gemfile: gemfiles/rails_6.0.gemfile
- rvm: 2.4.5
gemfile: gemfiles/rails_6.0.gemfile
before_script:
- gem install bundler
- bundle install
- cd test/dummy
- bundle exec rake db:create db:schema:load RAILS_ENV=test --trace
- cd ../..
script:
- bundle exec rake test