mox/vendor/github.com/mjl-/sherpa/Makefile

17 lines
197 B
Makefile
Raw Normal View History

2023-01-30 16:27:06 +03:00
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 ./...