paper-trail-gem--paper_trail/.travis.yml

27 lines
541 B
YAML
Raw Normal View History

language: ruby
cache: bundler
2018-02-18 22:14:19 +00:00
# For ruby compatibility, we test the highest and lowest minor versions only.
# For example, if our gemspec says `required_ruby_version = ">= 2.3.0"`, and
# ruby 2.5.0 has just been released, then we test 2.3 and 2.5, but not 2.4.
2011-07-25 20:08:44 +00:00
rvm:
2018-02-17 16:47:06 +00:00
- 2.5.0
- 2.3.6
2018-02-18 22:14:19 +00:00
env:
global:
- TRAVIS=true
matrix:
- DB=mysql
- DB=postgres
- DB=sqlite
2014-07-18 22:29:47 +00:00
sudo: false
gemfile:
- gemfiles/ar_4.2.gemfile
2017-04-27 04:21:04 +00:00
- gemfiles/ar_5.1.gemfile
2018-03-20 15:25:13 +00:00
- gemfiles/ar_5.2.gemfile
matrix:
fast_finish: true
2015-04-09 19:34:58 +00:00
addons:
postgresql: "9.4"