sue445/gitpeach

View on GitHub
.travis.yml

Summary

Maintainability
Test Coverage
language: ruby
rvm:
  - 2.0
  - 2.1
  - 2.2
env:
  - DB=mysql
  - DB=postgresql
cache: bundler
before_script:
  - "cp config/database.yml.$DB config/database.yml"
  - "cp config/gitlab.yml.sample config/gitlab.yml"
  - "cp config/pusher.yml.sample config/pusher.yml"
  - "RAILS_ENV=test bundle exec rake db:create db:migrate"
script: bundle exec rspec
branches:
  only:
    - master
notifications:
  email: false
sudo: false