summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 218dbd713557c59806088747040ee215a1fdc94c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
env:
  - DB=mysql
  - DB=postgresql
branches:
  only:
    - 'master'
rvm:
  - 1.9.3
services:
  - mysql
  - postgresql
before_script:
  - "cp config/database.yml.$DB config/database.yml"
  - "bundle exec rake db:create"
  - "bundle exec rake db:setup"
script: "bundle exec rake spec"