ingress-nginx-helm/.travis.yml
Manuel de Brito Fontes bf5616c65b Replace godep with dep
2017-10-06 17:26:14 -03:00

27 lines
514 B
YAML

sudo: required
services:
- docker
language: go
notifications:
email: true
go:
- 1.9
go_import_path: k8s.io/ingress-nginx
jobs:
include:
- stage: Static Check
script:
- go get github.com/golang/lint/golint
- make fmt lint vet
- stage: Coverage
script:
- go get github.com/mattn/goveralls
- go get github.com/modocache/gover
- if ! go get github.com/golang/tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
- make cover