tail/Makefile

12 lines
148 B
Makefile
Raw Normal View History

default: test
test: *.go
2014-04-30 10:55:54 +08:00
go test -v ./...
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 .