walter/.travis.yml
Jonathan Abbett eff726c6f4
Placement documentation and Travis testing fixes (#49)
New documentation on placement options, fix for Travis testing of Rails 6+

- Resolves #48
- Resolves #50
2021-04-15 15:08:56 -04:00

14 lines
291 B
YAML

language: ruby
env:
- 'RAILS_VERSION=5.2.0'
- 'RAILS_VERSION=6.0.0'
- 'RAILS_VERSION=6.1.0'
before_script:
- 'yarn'
- 'bundle install'
- 'RAILS_ENV=test bundle exec rake db:create'
- 'RAILS_ENV=test bundle exec rake db:migrate'
script: 'RAILS_ENV=test bundle exec rake test'