12 lines
129 B
Makefile
12 lines
129 B
Makefile
.PHONY: all test testrace int
|
|
|
|
all: test
|
|
|
|
test:
|
|
go test ./...
|
|
|
|
testrace:
|
|
go test -race ./...
|
|
|
|
int:
|
|
${MAKE} -C integration all
|