mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-01-12 03:21:33 +00:00
18 lines
347 B
Makefile
18 lines
347 B
Makefile
prepare:
|
|
go get -d -v ./...
|
|
go get launchpad.net/gocheck
|
|
go get github.com/axw/gocov/gocov
|
|
go get github.com/golang/lint/golint
|
|
go get github.com/matm/gocov-html
|
|
go get github.com/mattn/goveralls
|
|
|
|
coverage:
|
|
gocov test ./... | gocov-html > coverage.html
|
|
open coverage.html
|
|
|
|
check:
|
|
go tool vet -all=true .
|
|
golint .
|
|
|
|
test:
|
|
go test -v ./...
|