Makefile 112 B

1234567891011
  1. build:
  2. go build -trimpath -ldflags "-s -w" .
  3. test:
  4. go test -v ./...
  5. fmt:
  6. gofmt -d -e -s .
  7. clean:
  8. go clean