Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. CGO_ENABLED:=0
  2.  
  3. check:
  4. gofmt -s -l -d .
  5. goimports -l -d .
  6. goreturns -l -d .
  7. golangci-lint \
  8. --enable-all \
  9. ./...
  10.  
  11. build:
  12. go build \
  13. -tags 'static' \
  14. -ldflags '-w -extldflags "-static"' \
  15. .
  16.  
  17. clean:
  18. true
  19.  
  20. .PHONY: all
  21. all: check build clean
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement