Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 1 | export GO111MODULE=on |
| 2 | |
| 3 | default: fmt vet errcheck test lint |
| 4 | |
| 5 | # Taken from https://github.com/codecov/example-go#caveat-multiple-files |
| 6 | .PHONY: test |
| 7 | test: |
| 8 | echo "" > coverage.txt |
| 9 | for d in `go list ./...`; do \ |
| 10 | go test -p 1 -v -timeout 240s -race -coverprofile=profile.out -covermode=atomic $$d || exit 1; \ |
| 11 | if [ -f profile.out ]; then \ |
| 12 | cat profile.out >> coverage.txt; \ |
| 13 | rm profile.out; \ |
| 14 | fi \ |
| 15 | done |
| 16 | |
| 17 | GOLINT := $(shell command -v golint) |
| 18 | |
| 19 | .PHONY: lint |
| 20 | lint: |
| 21 | ifndef GOLINT |
| 22 | go get golang.org/x/lint/golint |
| 23 | endif |
| 24 | go list ./... | xargs golint |
| 25 | |
| 26 | .PHONY: vet |
| 27 | vet: |
| 28 | go vet ./... |
| 29 | |
| 30 | ERRCHECK := $(shell command -v errcheck) |
| 31 | # See https://github.com/kisielk/errcheck/pull/141 for details on ignorepkg |
| 32 | .PHONY: errcheck |
| 33 | errcheck: |
| 34 | ifndef ERRCHECK |
| 35 | go get github.com/kisielk/errcheck |
| 36 | endif |
| 37 | errcheck -ignorepkg fmt github.com/Shopify/sarama/... |
| 38 | |
| 39 | .PHONY: fmt |
| 40 | fmt: |
| 41 | @if [ -n "$$(go fmt ./...)" ]; then echo 'Please run go fmt on your code.' && exit 1; fi |
| 42 | |
| 43 | .PHONY : install_dependencies |
| 44 | install_dependencies: get |
| 45 | |
| 46 | .PHONY: get |
| 47 | get: |
| 48 | go get -t -v ./... |
| 49 | |
| 50 | .PHONY: clean |
| 51 | clean: |
| 52 | go clean ./... |