build(make): 将 check 目标改为使用 test-all

将 check 目标从 test 改为 test-all,确保运行完整测试套件
(包括单元测试、集成测试和 E2E 测试)。

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
xfy 2026-04-22 18:28:15 +08:00
parent dd6b61f987
commit cae8856f11

View File

@ -245,7 +245,7 @@ lint:
fi
# 代码检查
check: fmt lint test
check: fmt lint test-all
@echo "All checks passed."
# ============================================