Improve CI validation diagnostics
TaxBaik CI/CD / build-and-deploy (push) Failing after 24s

This commit is contained in:
2026-07-07 16:08:11 +09:00
parent 0f71e8c41f
commit a43e11bda1
3 changed files with 8 additions and 3 deletions
+3
View File
@@ -11,9 +11,12 @@ TARGETS = [
def main() -> int:
print(f"cwd: {Path.cwd()}")
print(f"repo_root: {ROOT}")
failed = False
for path in TARGETS:
try:
print(f"checking: {path}")
data = json.loads(path.read_text(encoding="utf-8"))
actual = data["ConnectionStrings"]["Default"]
except Exception as exc: