25 lines
480 B
YAML
25 lines
480 B
YAML
language: ruby
|
|
env:
|
|
- RUBYOPT='-W:no-deprecated -W:no-experimental'
|
|
before_script:
|
|
- bundle
|
|
- cd spec/dummy
|
|
- bundle exec rails g impressionist -f
|
|
- bundle exec rake db:create db:migrate RAILS_ENV=test
|
|
- cd ../..
|
|
script:
|
|
- bundle exec rspec
|
|
- bundle exec rubocop
|
|
rvm:
|
|
- 2.7.1
|
|
- ruby-head
|
|
matrix:
|
|
allow_failures:
|
|
- rvm: ruby-head
|
|
fast_finish: true
|
|
notifications:
|
|
email:
|
|
- acnalesso@yahoo.co.uk
|
|
- john@couponshack.com
|
|
- mmcmahand@gmail.com
|