mirror of
https://github.com/nais/wonderwall.git
synced 2026-05-07 08:57:07 +00:00
13 lines
305 B
Makefile
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 ./
|