mirror of
https://github.com/mjl-/mox.git
synced 2024-12-29 09:53:47 +03:00
13 lines
213 B
Makefile
13 lines
213 B
Makefile
|
build:
|
||
|
go build ./...
|
||
|
go vet ./...
|
||
|
GOARCH=386 go vet ./...
|
||
|
staticcheck ./...
|
||
|
|
||
|
fmt:
|
||
|
gofmt -w -s *.go cmd/*/*.go
|
||
|
|
||
|
test:
|
||
|
go test -shuffle=on -coverprofile cover.out
|
||
|
go tool cover -html=cover.out -o cover.html
|