Files
zemion 2ffdb23f69
Dependency Audit / dependency-audit (push) Successful in 1m45s
Deployment Installer / deployment-installer (push) Successful in 6s
Security Audit / security-audit (push) Successful in 11m30s
feat(devkit): add resumable workspace automation and UI review tooling
Verified with the coordinated workspace changes by devkit full run
2026-09-08T225814-186389-0000-3e3ed7cd (all seven phases passed).
This shared UI pass does not mark the individual module reviews complete.
2026-09-09 02:03:17 +02:00

33 lines
816 B
JSON
Executable File

{
"schema_version": 1,
"name": "Example Python project",
"repositories": [{"name": "app", "path": "."}],
"checks": [
{
"id": "whitespace",
"title": "Git whitespace check",
"argv": ["git", "diff", "--check"],
"cwd": ".",
"repos": ["app"],
"inputs": {"repos": ["app"]},
"timeout_seconds": 30
},
{
"id": "unit-tests",
"title": "Python unit tests",
"argv": ["{python}", "-m", "unittest", "discover", "-s", "tests"],
"cwd": ".",
"repos": ["app"],
"inputs": {"repos": ["app"]},
"after": ["whitespace"],
"resources": ["test-database"],
"timeout_seconds": 300
}
],
"profiles": {
"quick": ["whitespace", "unit-tests"],
"backend": ["unit-tests"],
"full": ["whitespace", "unit-tests"]
}
}