walter/.travis.yml
2021-04-15 14:01:18 -04:00

15 lines
309 B
YAML

language: ruby
env:
- 'RAILS_VERSION=5.1'
- 'RAILS_VERSION=5.2'
- 'RAILS_VERSION=6.0'
- 'RAILS_VERSION=6.1'
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'