minimal.makefile 189 B

12345678910111213141516
  1. test:
  2. go test ./...
  3. bench:
  4. go test ./... -run=NONE -bench=. -benchmem
  5. staticcheck:
  6. staticcheck ./...
  7. lint:
  8. golangci-lint run
  9. tidy:
  10. go mod tidy
  11. .PHONY: test bench staticcheck tidy