1
0
mirror of https://github.com/rancher/os.git synced 2025-07-05 02:56:13 +00:00
os/vendor/github.com/docker/engine-api/Makefile
Darren Shepherd a14846152b Update vendor
2016-05-31 18:14:32 -07:00

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)"