From 2b1e51443190ea0f8e1f9ce4f2cf4f7d42433a93 Mon Sep 17 00:00:00 2001 From: Gea-Suan Lin Date: Fri, 16 Feb 2024 20:52:49 +0800 Subject: [PATCH] Add "make test". --- GNUmakefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index 08a3374..a6b8700 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -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 ./...