mirror of
https://github.com/kubernetes/kubernetes.git
synced 2026-02-28 04:30:38 -05:00
11 lines
154 B
Makefile
11 lines
154 B
Makefile
default: test
|
|
|
|
test: *.go
|
|
go test -v -race ./...
|
|
|
|
fmt:
|
|
gofmt -w .
|
|
|
|
# Run the test in an isolated environment.
|
|
fulltest:
|
|
docker build -t hpcloud/tail .
|