mirror of
https://github.com/adnanh/webhook.git
synced 2025-10-04 05:31:03 +00:00
14 lines
371 B
Makefile
14 lines
371 B
Makefile
all:
|
|
@echo "**********************************************************"
|
|
@echo "** chi build tool **"
|
|
@echo "**********************************************************"
|
|
|
|
|
|
test:
|
|
go clean -testcache && $(MAKE) test-router && $(MAKE) test-middleware
|
|
|
|
test-router:
|
|
go test -race -v .
|
|
|
|
test-middleware:
|
|
go test -race -v ./middleware
|