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