miniflux-v2/.travis.yml

18 lines
291 B
YAML
Raw Normal View History

2017-11-20 22:50:50 +01:00
notifications:
email: false
2017-11-25 19:40:23 +01:00
services:
- postgresql
addons:
postgresql: "9.4"
2017-11-20 06:10:04 +01:00
language: go
go:
- 1.9
2017-11-20 22:55:14 +01:00
before_install:
- npm install -g jshint
2017-11-28 06:30:04 +01:00
- go get -u github.com/golang/lint/golint
2017-11-20 06:10:04 +01:00
script:
2017-11-20 22:55:14 +01:00
- jshint server/static/js/app.js
2017-11-28 06:30:04 +01:00
- make lint
2017-11-25 19:40:23 +01:00
- make test
- make integration-test