Add "make test".

This commit is contained in:
Gea-Suan Lin
2024-02-16 20:52:49 +08:00
parent e4d66e501d
commit 2b1e514431

View File

@@ -1,6 +1,6 @@
# #
.DEFAULT: all .DEFAULT: all
.PHONY: all clean .PHONY: all clean test
# #
DIST?= dist/ DIST?= dist/
@@ -18,3 +18,6 @@ dist/ir-tfidf:: cmd/ir-tfidf/* internal/**
clean:: clean::
rm -rf "${DIST}" rm -rf "${DIST}"
test::
go test ./...