mirror of
https://github.com/kubernetes/sample-controller.git
synced 2025-04-07 16:43:06 +08:00

Fork godep to fix inconsistent abbreviation size Kubernetes-commit: e998d6c2bc83385d98186a87e95a0f947e121ec1
15 lines
294 B
YAML
15 lines
294 B
YAML
language: go
|
|
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 ./...) | grep -v YAMLToJSON)
|
|
- go tool vet .
|
|
- go test -v -race ./...
|
|
install:
|
|
- go get golang.org/x/lint/golint
|