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

35 lines
563 B
YAML
Raw Normal View History

language: ruby
cache: bundler
2018-02-18 22:14:19 +00:00
# For ruby, we test the highest and lowest minor versions only.
2011-07-25 20:08:44 +00:00
rvm:
- 2.4
2020-01-02 14:43:51 +00:00
- 2.7
2018-02-18 22:14:19 +00:00
env:
global:
- TRAVIS=true
matrix:
- DB=mysql
- DB=postgres
- DB=sqlite
# Travis recommend we use the VM infrastructure (`sudo: required`)
sudo: required
before_install:
- gem update bundler
gemfile:
2018-03-20 15:25:13 +00:00
- gemfiles/ar_5.2.gemfile
- gemfiles/ar_6.0.gemfile
matrix:
exclude:
2019-01-02 00:14:47 +00:00
# rails 6 requires ruby >= 2.5.0
- rvm: 2.4
gemfile: gemfiles/ar_6.0.gemfile
fast_finish: true
2019-08-01 17:43:37 +00:00
services:
- mysql
- postgresql