summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-04-16 15:11:27 +0300
committerPaul Buetow <paul@buetow.org>2025-04-16 15:11:27 +0300
commitd1d5cd53cbc62c8d8b7e3e4be73269918a997ddd (patch)
tree6e376646e8eea94596d79b8afcea09df1984595e /Makefile
parent24753df2d21112ea1ddc6498b521f7f42dd7c708 (diff)
add types test
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 2311fb2..666271a 100644
--- a/Makefile
+++ b/Makefile
@@ -63,6 +63,11 @@ test_specific:
$(GO) clean -testcache
$(GO) test ./... -run ^$(TEST_NAME)$$ -v
+.PHONY: test_foo
+test_foo:
+ $(GO) clean -testcache
+ $(GO) test ./internal/types -v
+
.PHONY: bench
bench:
$(GO) test ./... -v -bench=. -run xxx