mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
15 lines
399 B
YAML
15 lines
399 B
YAML
dependencies:
|
|
pre:
|
|
# setup ipv6
|
|
- sudo sysctl -w net.ipv6.conf.lo.disable_ipv6=0 net.ipv6.conf.default.disable_ipv6=0 net.ipv6.conf.all.disable_ipv6=0
|
|
post:
|
|
# install golint
|
|
- go get github.com/golang/lint/golint
|
|
|
|
test:
|
|
pre:
|
|
# run analysis before tests
|
|
- go vet ./...
|
|
- test -z "$(golint ./... | tee /dev/stderr)"
|
|
- test -z "$(gofmt -s -l . | tee /dev/stderr)"
|