Files
wonderwall/Makefile
2023-03-29 10:03:37 +02:00

13 lines
305 B
Makefile

wonderwall:
go build -trimpath -ldflags "-s -w" -a -o bin/wonderwall cmd/wonderwall/main.go
test:
go test -count=1 -shuffle=on ./... -coverprofile cover.out
check:
go run honnef.co/go/tools/cmd/staticcheck ./...
go run golang.org/x/vuln/cmd/govulncheck -v ./...
fmt:
go run mvdan.cc/gofumpt -w ./