1
0
Fork 0
miniflux/.travis.yml

18 lines
290 B
YAML
Raw Normal View History

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