mirror of
https://github.com/lddsb/drone-dingtalk-message.git
synced 2026-06-04 18:33:48 +08:00
11 lines
234 B
Makefile
11 lines
234 B
Makefile
GO ?= go
|
|
PACKAGES ?= $(shell $(GO) list ./...)
|
|
|
|
vet:
|
|
$(GO) vet $(PACKAGES)
|
|
|
|
test:
|
|
@$(GO) test -v -cover -coverprofile coverage.txt $(PACKAGES) && echo "\n==>\033[32m Ok\033[m\n" || exit 1
|
|
|
|
coverage:
|
|
sed -i '/main.go/d' coverage.txt
|