From cae8856f1111885b3dd5c2c5b3f307eae8e71b7d Mon Sep 17 00:00:00 2001 From: xfy Date: Wed, 22 Apr 2026 18:28:15 +0800 Subject: [PATCH] =?UTF-8?q?build(make):=20=E5=B0=86=20check=20=E7=9B=AE?= =?UTF-8?q?=E6=A0=87=E6=94=B9=E4=B8=BA=E4=BD=BF=E7=94=A8=20test-all?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将 check 目标从 test 改为 test-all,确保运行完整测试套件 (包括单元测试、集成测试和 E2E 测试)。 Co-Authored-By: Claude Opus 4.7 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 83043a9..9ffe8f8 100644 --- a/Makefile +++ b/Makefile @@ -245,7 +245,7 @@ lint: fi # 代码检查 -check: fmt lint test +check: fmt lint test-all @echo "All checks passed." # ============================================