mirror of
https://github.com/stashapp/stash.git
synced 2026-01-19 14:42:00 +01: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
|