7 lines
60 B
Makefile
7 lines
60 B
Makefile
|
.PHONY: test fuzz
|
||
|
test:
|
||
|
go test
|
||
|
|
||
|
fuzz:
|
||
|
go test -fuzz=Fuzz
|