Skip to content

Instantly share code, notes, and snippets.

@BK1031
Created July 15, 2024 17:37
Show Gist options
  • Save BK1031/710b6ed8431202d69c1bbb848797e4cc to your computer and use it in GitHub Desktop.
Save BK1031/710b6ed8431202d69c1bbb848797e4cc to your computer and use it in GitHub Desktop.
.PHONY: clean run test
clean:
go clean
go mod tidy
rm *.out
rm coverage.html
run:
. .env
go get .
go run main.go
test:
go test ./... -race -covermode=atomic -coverprofile=coverage.out -v
go tool cover -html coverage.out -o coverage.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment