实现七月迭代公共技术基础
All checks were successful
构建并部署到测试环境(无 SSH) / build-and-deploy (push) Successful in 9m20s

This commit is contained in:
2026-07-23 17:52:48 +09:00
parent f7c42252c0
commit 17782d5f8e
76 changed files with 5246 additions and 158 deletions

View File

@@ -0,0 +1,27 @@
#!/usr/bin/env bash
set -euo pipefail
# 本验收只运行公共基础拥有的公开接缝;真实依赖连接信息沿用项目本地配置。
if [[ -f .env.local ]]; then
set -a
# shellcheck disable=SC1091
source .env.local
set +a
fi
GOCACHE="${GOCACHE:-/tmp/junhong-go-cache}" go test \
./pkg/idempotency \
./pkg/asynctask \
./pkg/logger \
./pkg/queue \
./internal/infrastructure/asynctask \
./internal/infrastructure/releasegate \
./internal/infrastructure/messaging/outbox \
./internal/query/outbox \
./internal/application/outbox \
./internal/infrastructure/systemconfig \
./internal/query/systemconfig \
./internal/application/systemconfig \
./internal/routes \
-count=1