[fix] Fixed makefile test target

This commit is contained in:
Piotr Biernat 2022-03-14 16:23:11 +01:00
parent 3d3ce8873c
commit abfd08cc26

View File

@ -1,3 +1,5 @@
.PHONY: test
run:
go run cmd/server/main.go
@ -7,7 +9,7 @@ race:
build:
go build cmd/server/main.go
tests:
test:
go test -v -run=. test/**/*.go
bench: bench-clean