Fetch the repository succeeded.
PKGS_WITH_OUT_EXAMPLES := $(shell go list ./... | grep -v 'examples/')
PKGS_WITH_OUT_EXAMPLES_AND_UTILS := $(shell go list ./... | grep -v 'examples/\|utils/')
GO_FILES := $(shell find . -name "*.go" -not -path "./vendor/*" -not -path ".git/*" -print0 | xargs -0)
checkTravis: overalls vet lint misspell staticcheck cyclo const veralls test
checkCircle: overalls vet lint misspell staticcheck cyclo const test
checkLocal: overalls vet lint misspell staticcheck cyclo const test
overalls:
@echo "overalls"
overalls -project=github.com/aberic/proc -covermode=count -ignore='.git,_vendor'
vet:
@echo "vet"
go vet $(PKGS_WITH_OUT_EXAMPLES)
lint:
@echo "golint"
golint -set_exit_status $(PKGS_WITH_OUT_EXAMPLES_AND_UTILS)
misspell:
@echo "misspell"
misspell -source=text -error $(GO_FILES)
staticcheck:
@echo "staticcheck"
staticcheck $(PKGS_WITH_OUT_EXAMPLES)
cyclo:
@echo "gocyclo"
gocyclo -over 50 $(GO_FILES)
# gocyclo -top 10 $(GO_FILES)
const:
@echo "goconst"
goconst $(PKGS_WITH_OUT_EXAMPLES)
veralls:
@echo "goveralls"
goveralls -coverprofile=overalls.coverprofile -service=travis-ci -repotoken $(COVERALLS_TOKEN)
test:
@echo "test"
go test -v -cover $(PKGS_WITH_OUT_EXAMPLES)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。