10 lines
171 B
YAML
10 lines
171 B
YAML
notifications:
|
|
email: false
|
|
language: go
|
|
go:
|
|
- 1.9
|
|
before_install:
|
|
- npm install -g jshint
|
|
script:
|
|
- jshint server/static/js/app.js
|
|
- go test -cover -race ./...
|