miniflux-v2/.travis.yml

18 lines
290 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:
2018-03-15 02:51:41 +01:00
- "1.10"
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:
2018-01-06 03:00:11 +01:00
- jshint ui/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