mirror of
https://github.com/kubernetes/sample-controller.git
synced 2025-02-13 01:53:00 +08:00
![Kubernetes Publisher](/assets/img/avatar_default.png)
Update cadvisor and other repos for klog Kubernetes-commit: a3ccea9d8743f2ff82e41b6c2af6dc2c41dc7b10
15 lines
273 B
YAML
15 lines
273 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 ./...))
|
|
- go tool vet .
|
|
- go test -v -race ./...
|
|
install:
|
|
- go get golang.org/x/lint/golint
|