tail/Makefile

12 lines
154 B
Makefile
Raw Normal View History

default: test
test: *.go
go test -v -race ./...
fmt:
gofmt -w .
2013-09-09 11:04:39 +08:00
2013-09-09 11:20:08 +08:00
# Run the test in an isolated environment.
2013-09-09 11:04:39 +08:00
fulltest:
2015-09-30 22:48:17 +08:00
docker build -t hpcloud/tail .