
No particular benefit and no relevant changes, it's just to stay up-to-date and to avoid having to pull that in when merging https://github.com/kubernetes/kubernetes/pull/111023 which indirectly depends on the newer release.
13 lines
326 B
YAML
13 lines
326 B
YAML
language: go
|
|
arch: arm64
|
|
dist: focal
|
|
go: 1.15.x
|
|
script:
|
|
- diff -u <(echo -n) <(gofmt -d *.go)
|
|
- diff -u <(echo -n) <(golint $(go list -e ./...) | grep -v YAMLToJSON)
|
|
- GO111MODULE=on go vet .
|
|
- GO111MODULE=on go test -v -race ./...
|
|
- git diff --exit-code
|
|
install:
|
|
- GO111MODULE=off go get golang.org/x/lint/golint
|