You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
760 B
30 lines
760 B
default: fmt vet errcheck test |
|
|
|
# Taken from https://github.com/codecov/example-go#caveat-multiple-files |
|
test: |
|
echo "" > coverage.txt |
|
for d in `go list ./... | grep -v vendor`; do \ |
|
go test -p 1 -v -timeout 90s -race -coverprofile=profile.out -covermode=atomic $$d || exit 1; \ |
|
if [ -f profile.out ]; then \ |
|
cat profile.out >> coverage.txt; \ |
|
rm profile.out; \ |
|
fi \ |
|
done |
|
|
|
vet: |
|
go vet ./... |
|
|
|
# See https://github.com/kisielk/errcheck/pull/141 for details on ignorepkg |
|
errcheck: |
|
errcheck -ignorepkg fmt github.com/Shopify/sarama/... |
|
|
|
fmt: |
|
@if [ -n "$$(go fmt ./...)" ]; then echo 'Please run go fmt on your code.' && exit 1; fi |
|
|
|
install_dependencies: install_errcheck get |
|
|
|
install_errcheck: |
|
go get github.com/kisielk/errcheck |
|
|
|
get: |
|
go get -t
|
|
|