Skip to content

Commit

Permalink
fix: Bare 'make' fails due to go vet
Browse files Browse the repository at this point in the history
`go vet` was missing the `testing` tag necessary to build some of the tests.
  • Loading branch information
acaloiaro committed Sep 26, 2023
1 parent 43c2bf0 commit a17ea73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ fmt:

.PHONY: vet
vet:
@go vet ./...
@go vet -tags testing ./...

.PHONY: test
test: install-gotestsum
Expand Down

0 comments on commit a17ea73

Please sign in to comment.