Makefile 154 B

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