tilde.news/.travis.yml

18 lines
321 B
YAML
Raw Permalink Normal View History

2017-10-03 21:23:57 +00:00
---
language: ruby
2017-10-04 18:38:19 +00:00
services:
- mysql
2017-10-04 18:46:11 +00:00
env:
global:
- DATABASE_URL=mysql2://root:@localhost/lobsters_dev
- RAILS_ENV=test
2019-03-20 12:45:04 +00:00
before_install:
- gem install bundler
2017-10-04 18:38:19 +00:00
before_script:
- ./bin/rails db:create
- ./bin/rails db:schema:load
2018-03-21 20:42:30 +00:00
script:
- bundle exec rspec
2018-12-09 15:52:00 +00:00
- bundle exec rubocop
- bundle exec ruumba