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
.PHONY: all clean
.PHONY: all clean test
#
DIST?= dist/
@@ -18,3 +18,6 @@ dist/ir-tfidf:: cmd/ir-tfidf/* internal/**
clean::
rm -rf "${DIST}"
test::
go test ./...