mirror of
https://github.com/rancher/os.git
synced 2025-07-05 02:56:13 +00:00
16 lines
269 B
Makefile
16 lines
269 B
Makefile
.PHONY: all deps test validate
|
|
|
|
all: deps test validate
|
|
|
|
deps:
|
|
go get -t ./...
|
|
go get github.com/golang/lint/golint
|
|
|
|
test:
|
|
go test -race -cover ./...
|
|
|
|
validate:
|
|
go vet ./...
|
|
test -z "$(golint ./... | tee /dev/stderr)"
|
|
test -z "$(gofmt -s -l . | tee /dev/stderr)"
|