github.com/yinheli/tail@v1.0.0/Makefile (about)

     1  default:	test
     2  
     3  test:	*.go
     4  	go test -v -race ./...
     5  
     6  fmt:
     7  	gofmt -w .
     8  
     9  # Run the test in an isolated environment.
    10  fulltest:
    11  	docker build -t hpcloud/tail .