mirror of
https://github.com/mjl-/mox.git
synced 2024-12-27 08:53:48 +03:00
16 lines
197 B
Makefile
16 lines
197 B
Makefile
build:
|
|
go build ./...
|
|
go vet ./...
|
|
|
|
test:
|
|
go test -coverprofile=cover.out ./...
|
|
go tool cover -html=cover.out -o cover.html
|
|
golint ./...
|
|
|
|
coverage:
|
|
|
|
clean:
|
|
go clean ./...
|
|
|
|
fmt:
|
|
go fmt ./...
|