aboutsummaryrefslogtreecommitdiff
blob: 55d9778d535d8f8e0cc38fee2553ffeccb6545ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
sudo: false
language: ruby
rvm:
  - 2.2
  - 2.1
  - 2.0
  - 1.9
env:
  - DATABASE_URL='postgres://postgres@localhost/travis_ci_test'
before_script:
  - psql -c 'create database travis_ci_test;' -U postgres
addons:
  apt:
    packages:
      - pylint
      - shellcheck
install:
  - cd web/
  - bundle install
script:
  - bundle exec rake db:migrate
  - bundle exec rake test