mirror of
https://github.com/paper-trail-gem/paper_trail.git
synced 2022-11-09 11:33:19 -05:00
f3bc5290ee
Goal: rake default task can do everything without manual setup Also delete `spec/dummy_app/db/schema.rb`. People forget (understandably) to update it. As long as we don't use the db:setup task first, we don't need it.
26 lines
541 B
YAML
26 lines
541 B
YAML
language: ruby
|
|
cache: bundler
|
|
|
|
# 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.
|
|
rvm:
|
|
- 2.5.0
|
|
- 2.3.6
|
|
|
|
env:
|
|
global:
|
|
- TRAVIS=true
|
|
matrix:
|
|
- DB=mysql
|
|
- DB=postgres
|
|
- DB=sqlite
|
|
sudo: false
|
|
gemfile:
|
|
- gemfiles/ar_4.2.gemfile
|
|
- gemfiles/ar_5.1.gemfile
|
|
- gemfiles/ar_5.2.gemfile
|
|
matrix:
|
|
fast_finish: true
|
|
addons:
|
|
postgresql: "9.4"
|