fix: Bare 'make' fails due to go vet

`go vet` was missing the `testing` tag necessary to build some of the tests.
This commit is contained in:
Adriano Caloiaro 2023-09-26 08:31:24 -06:00 committed by Adriano Caloiaro
parent 43c2bf0761
commit a17ea73f6e

View file

@ -14,7 +14,7 @@ fmt:
.PHONY: vet
vet:
@go vet ./...
@go vet -tags testing ./...
.PHONY: test
test: install-gotestsum