Makefile 135 B

1234567891011
  1. #!/usr/bin/make -f
  2. test:
  3. go test -timeout=1s -short ./...
  4. compile:
  5. go build ./...
  6. build: test compile
  7. .PHONY: test compile build