1
0
Fork 0
miniflux/.travis.yml

18 lines
287 B
YAML
Raw Normal View History

2017-11-20 13:50:50 -08:00
notifications:
email: false
2017-11-25 10:40:23 -08:00
services:
- postgresql
addons:
postgresql: "9.4"
2017-11-19 21:10:04 -08:00
language: go
go:
- 1.9
2017-11-20 13:55:14 -08:00
before_install:
- npm install -g jshint
2017-11-27 21:30:04 -08:00
- go get -u github.com/golang/lint/golint
2017-11-19 21:10:04 -08:00
script:
2018-01-05 18:00:11 -08:00
- jshint ui/static/js/app.js
2017-11-27 21:30:04 -08:00
- make lint
2017-11-25 10:40:23 -08:00
- make test
- make integration-test