Skip to content

Instantly share code, notes, and snippets.

@dixonwhitmire
Created August 31, 2022 14:32
Show Gist options
  • Save dixonwhitmire/323285057c6087809df4ef2580d773c1 to your computer and use it in GitHub Desktop.
Save dixonwhitmire/323285057c6087809df4ef2580d773c1 to your computer and use it in GitHub Desktop.
Go MakeFile
fmt:
go fmt ./...
.PHONY:fmt
lint: fmt
revive ./...
.PHONY:lint
vet: fmt
go vet ./...
.PHONY:vet
build: vet
go build ./...
.PHONY:build
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment