{ "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"] } }