mirror of
https://github.com/acaloiaro/neoq
synced 2026-07-21 18:29:08 +00:00
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:
parent
43c2bf0761
commit
a17ea73f6e
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
|
@ -14,7 +14,7 @@ fmt:
|
|||
|
||||
.PHONY: vet
|
||||
vet:
|
||||
@go vet ./...
|
||||
@go vet -tags testing ./...
|
||||
|
||||
.PHONY: test
|
||||
test: install-gotestsum
|
||||
|
|
|
|||
Loading…
Reference in a new issue