Makefile 181 B

1234567891011121314
  1. #!/usr/bin/make -f
  2. test: fmt
  3. go test -timeout=1s -race -cover -short -count=1 ./...
  4. fmt:
  5. go fmt ./...
  6. compile:
  7. go build ./...
  8. build: test compile
  9. .PHONY: test compile build