walter/.travis.yml
2021-04-15 15:00:38 -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'