mirror of
https://github.com/mjl-/mox.git
synced 2025-01-01 11:23:50 +03:00
21 lines
305 B
Makefile
21 lines
305 B
Makefile
|
build:
|
||
|
go build ./...
|
||
|
go vet ./...
|
||
|
GOARCH=386 go vet ./...
|
||
|
staticcheck ./...
|
||
|
./gendoc.sh
|
||
|
|
||
|
fmt:
|
||
|
go fmt ./...
|
||
|
gofmt -w -s *.go cmd/bstore/*.go
|
||
|
|
||
|
test:
|
||
|
go test -race -shuffle=on -coverprofile cover.out
|
||
|
go tool cover -html=cover.out -o cover.html
|
||
|
|
||
|
benchmark:
|
||
|
go test -bench .
|
||
|
|
||
|
fuzz:
|
||
|
go test -fuzz .
|