ingress-nginx-helm/vendor/k8s.io/klog/.travis.yml
Manuel Alejandro de Brito Fontes 14f4a7b8e8
Update go dependencies
2019-03-28 22:36:15 -03:00

15 lines
301 B
YAML

language: go
go_import_path: k8s.io/klog
dist: xenial
go:
- 1.9.x
- 1.10.x
- 1.11.x
script:
- go get -t -v ./...
- diff -u <(echo -n) <(gofmt -d .)
- diff -u <(echo -n) <(golint $(go list -e ./...))
- go tool vet .
- go test -v -race ./...
install:
- go get golang.org/x/lint/golint