mox/vendor/github.com/mjl-/sherpa/Makefile
Mechiel Lukkien cb229cb6cf
mox!
2023-01-30 14:27:06 +01:00

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 ./...