
.PHONY: test
test:
	find . -name go.mod -execdir go test -count=1 ./... \;

.PHONY: build
build:
	find . -name go.mod -execdir go build ./... \;
