finclip-app-manager/vendor/github.com/hashicorp/go-rootcerts/Makefile

9 lines
125 B
Makefile
Raw Normal View History

2023-11-02 18:36:36 +08:00
TEST?=./...
test:
go test $(TEST) $(TESTARGS) -timeout=3s -parallel=4
go vet $(TEST)
go test $(TEST) -race
.PHONY: test