Created
August 28, 2023 10:23
-
-
Save lmas/40150775a780941c5d1eb3a475474c8c to your computer and use it in GitHub Desktop.
Justfile for Go projects
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
COVER := ".cover" | |
TARGETS := "$(go list ./... | grep -v /tmp)" | |
# Touch go.mod in any dirs you want to "exclude" from go mod tidy, | |
# for example inside tmp. | |
# Show available recipes by default | |
default: | |
@just --list | |
# Run tests and log the test coverage | |
test: | |
go test -v -coverprofile="{{COVER}}.out" {{TARGETS}} | |
# Run benchmarking | |
bench: | |
go test -cover -bench=. | |
# Generate pretty coverage report | |
cover: | |
go tool cover -html="{{COVER}}.out" -o="{{COVER}}.html" | |
firefox "{{COVER}}.html" | |
# Runs source code linters (ignoring errors from gosec and govulncheck) | |
lint: | |
go vet {{TARGETS}} | |
- gosec -quiet -fmt=golint {{TARGETS}} | |
- govulncheck {{TARGETS}} | |
# Updates 3rd party packages and tools | |
deps: | |
go get -u {{TARGETS}} | |
go mod tidy | |
go install github.com/securego/gosec/v2/cmd/gosec@latest | |
go install golang.org/x/vuln/cmd/govulncheck@latest | |
# Show documentation of public parts of package, in the current dir | |
[no-cd] | |
docs: | |
go doc -all | |
# Builds the binary, with debug symbol table and DWARF gen disabled for smaller bin | |
build: | |
go build -ldflags "-s -w" | |
# Clean up built binary and other temporary files (ignores errors from rm) | |
clean: | |
go clean | |
-rm {{COVER}}.* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment