2023-02-16 17:52:40 +01:00

9 lines
134 B
Makefile

# Create a makefile that runs all the tests in tests/
SRC = $(wildcard tests/*.go)
all:
go test $(SRC)
verbose:
go test -v $(SRC)