aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
blob: c6c431a7664fdef6ddfb9c848ead1843fbac6f74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
notifications:
  email: false
services:
  - postgresql
addons:
  postgresql: "9.4"
language: go
go:
  - "1.10"
before_install:
  - npm install -g jshint
  - go get -u github.com/golang/lint/golint
script:
  - jshint ui/static/js/app.js
  - make lint
  - make test
  - make integration-test