The only GitHub Action that answers "Does this PR have adequate tests?" — not just "What's the coverage number?"
Test-Guard combines diff coverage, heuristic test-file matching across 19 languages, and AI-powered per-file evaluation into a single pass/fail gate. Coverage-only tools tell you a percentage. Test-Guard tells you whether your changes are actually tested.
Test-Guard evaluates every source file in your PR independently. Layer 1 and Layer 2 extract data (coverage percentages, test-file matches); Layer 3 combines that data with its own analysis to produce the authoritative verdict:
flowchart TD
A[PR Opened] --> B["Layer 1 — Diff Coverage"]
B -->|all files ≥ threshold| Z(["✅ PASS — done"])
B --> C["Layer 2 — File Matching<br/>(advisory hints for Layer 3;<br/>short-circuits only when AI is disabled)"]
C --> D["Layer 3 — Per-File Analysis"]
D --> E["Gates 1–8: deterministic shortcuts<br/>(coverage + test relevance + triviality)<br/>resolve most files without AI"]
E -->|ambiguous file remains| F["AI fallthrough — only unresolved files"]
F --> G(["Layer 3 verdict overrides Layers 1 & 2"])
E -->|fully resolved| G
style Z fill:#2ea44f,color:#fff,stroke:#22863a
style G fill:#0969da,color:#fff,stroke:#054594
Key design principle: Layer 3 performs a from-scratch per-file evaluation. It doesn't inherit Layer 2's verdicts — it uses L1 coverage data and L2 matched-test hints as inputs alongside test diffs and triviality detection to reach its own conclusions.
Calculates the percentage of changed lines covered by existing tests, per file.
- Mechanism: Runs
diff-coveragainst your coverage report (XML or LCOV). - Short-circuit: PASS when every source file meets or exceeds the threshold.
- Output: Per-file coverage percentages forwarded to Layer 3 for use in shortcuts.
- SKIP: No coverage file provided or diff-cover fails. Pipeline continues.
Matches each modified source file to a corresponding test file using naming conventions across 19 languages.
- Silently skips: Excluded files, test files themselves, unrecognized extensions.
- Per-file verdicts:
- PASS: Matching test file found and modified in this PR.
- WARNING: Matching test file exists in the repo but wasn't modified.
- FAIL: No matching test file found.
- Advisory mode (AI enabled): Layer 2 never short-circuits. Its matched-test hints feed into Layer 3 but don't determine the final verdict.
- Gate mode (AI disabled): Layer 2 short-circuits on all-PASS, and its verdict is final.
Combines coverage data from L1 and test-match hints from L2 with its own triviality detection and AI analysis. Evaluates each source file through deterministic shortcuts first, falling back to AI only for files that can't be resolved.
Deterministic shortcuts (Gates 1–8):
Each source file is evaluated against these gates in order. The first matching gate produces a verdict and skips AI for that file:
| Gate | Condition | Verdict | Rationale |
|---|---|---|---|
| 1 | File was deleted | SKIP | No remaining code to test |
| 2 | Nothing testable changed — trivial diff (whitespace/comments), or the file is in the coverage report with no executable changed lines | SKIP | There is nothing a test could cover |
| 3 | Coverage ≥ threshold (any test relevance) | PASS | Existing tests already cover the changes |
| 4 | No relevant tests in PR + no/low coverage | FAIL | No evidence of test coverage at all |
| 5 | Coverage < threshold + relevant tests exist (YES) | FAIL | Tests exist but don't cover enough |
| 6 | Coverage < threshold + ambiguous test relevance (UNKNOWN) | → AI | AI determines if changed tests actually target this file |
| 7 | No coverage data + relevant tests exist (YES) | → AI | AI cross-references test diffs against source diffs |
| 8 | No coverage data + ambiguous test relevance (UNKNOWN) | → AI | Most uncertain case — AI judges both relevance and adequacy |
Test relevance is a tri-state (YES / NO / UNKNOWN):
- YES: Layer 2 matched a test, or a changed test file's name/content references the source file.
- NO: No test files were changed in this PR at all.
- UNKNOWN: Test files were changed but none could be linked to this source file.
AI fallthrough: Only files reaching Gates 6–8 are sent to the AI. The prompt includes source diffs, all changed test diffs (with matched/candidate annotations), per-file coverage data, and Layer 2 hints. AI returns a per-file verdict with a confidence score — FAIL verdicts below the confidence threshold are downgraded to WARNING.
AI failure handling: If the API call fails, Layer 3 returns SKIP, and the final verdict falls back to Layer 1 + Layer 2 worst-wins (degraded strict mode).
Layer 3's verdict is authoritative when it runs:
| Scenario | Final Verdict |
|---|---|
| Layer 3 returns PASS/FAIL/WARNING | Layer 3's verdict (overrides L1 and L2) |
| Layer 3 returns SKIP (AI failure) | Worst of Layer 1 + Layer 2 (fallback) |
| AI disabled (no Layer 3) | Worst of Layer 1 + Layer 2 |
Priority within a layer: FAIL > WARNING > PASS > SKIP.
| Verdict | Meaning | Exit Code | Status Check |
|---|---|---|---|
| PASS | All changes adequately tested | 0 | ✅ Success |
| FAIL | Tests missing or inadequate — blocks the PR | 1 | ❌ Failure |
| WARNING | Minor gaps or low-confidence AI result — non-blocking | 0 | ✅ Success |
| SKIP | All layers skipped (no coverage file, AI disabled, etc.) | 0 | ✅ Success |
Test-Guard uses the GitHub Models API with your standard GITHUB_TOKEN. No external API keys required.
name: Test-Guard
on:
pull_request:
types: [opened, synchronize]
permissions:
contents: read
pull-requests: write
checks: write
models: read # Required for Layer 3 AI analysis
jobs:
test-guard:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run tests with coverage
run: pytest --cov --cov-report=xml # your test command
- name: Test-Guard
uses: ostico/test-guard@v1
with:
coverage-file: coverage.xmlThe
models: readpermission is required for AI analysis. If you setai-enabled: 'false', you can omit it.
| Input | Default | Description |
|---|---|---|
coverage-file |
(none) | Path(s) to coverage report(s) — Cobertura, Clover, JaCoCo, or LCOV. Comma-separated or multiline for multiple files. Layer 1 skips if omitted. |
coverage-threshold |
80 |
Minimum diff-coverage % to auto-pass. Integer, 0–100; other values fail the run. |
test-patterns |
auto |
Source-to-test mapping. auto auto-detects 19 languages, or pass a JSON object to add/override patterns — see Custom test patterns. |
exclude-patterns |
(see below) | Comma-separated glob patterns to skip. Setting this replaces the default list. See Excluding files. |
extra-exclude-patterns |
(empty) | Comma-separated glob patterns to exclude in addition to exclude-patterns (unioned, deduped). Add repo-specific excludes here without re-listing the defaults. |
ai-enabled |
true |
Enable Layer 3 AI analysis. Truthy values: true, 1, yes (case-insensitive); anything else disables it. |
ai-model |
openai/gpt-4.1-mini |
GitHub Models model ID. |
ai-confidence-threshold |
0.7 |
AI FAIL verdicts below this confidence become WARNING. Float, 0.0–1.0; other values fail the run. |
Default exclude patterns:
*.json, *.yml, *.yaml, *.md, *.txt, *.lock, *.toml, *.cfg, *.ini, *.sql,
migrations/**, docs/**,
*.config.js, *.config.ts, *.config.mjs, *.config.cjs, Gruntfile.js, Gulpfile.js,
conftest.py, setup.py, manage.py, noxfile.py, fabfile.py,
build.rs
Two independent knobs:
extra-exclude-patterns(usually what you want) — unioned on top of the defaults, so you add your own without re-listing anything. Deduped against the base.extra-exclude-patterns: 'benchmarks/**,fixtures/**'
exclude-patterns— a full override of the default list. Reach for this only when you need to un-exclude a default (e.g. analyze a*.config.jsthat's actually real source); you then own the whole list.
The two compose: the final exclude set is exclude-patterns ∪ extra-exclude-patterns. Files matched by either are dropped before any layer runs, so they never affect the verdict.
The defaults stay deliberately conservative — a test-adequacy gate should never silently skip a whole tree of code for you. Repo-specific skips (benchmark harnesses, fixture generators) belong in
extra-exclude-patterns, not in the shipped defaults.
Keep exclude-patterns in sync with your coverage tool's own exclusions. These are two independent lists. A changed source file that your coverage tool excludes (e.g. via .coveragerc, Jest coveragePathIgnorePatterns) is absent from the coverage report, but if Test-Guard still considers it a source file, Layer 1 fails it with "not in coverage report." To avoid this, add the same file to exclude-patterns so Test-Guard skips it too. Files with non-source extensions (.json, .md, .yml, .ini, …) are ignored automatically and need no entry.
You do not need an exclude for declaration-only changes. diff-cover reports coverage for changed executable lines, so a file whose diff touches only type declarations, interface members, or doc comments never shows up in its output — even at 100% coverage. Test-Guard resolves that ambiguity by reading the coverage report directly (Clover, Cobertura, JaCoCo, LCOV):
| Situation | Verdict |
|---|---|
| File is in the coverage report, absent from diff-cover's output | ✅ pass — "in coverage report, but no executable lines changed" |
| File is not in the coverage report at all | ❌ fail — "not in coverage report" (a real instrumentation gap) |
So a PR that only adds fields to a TypeScript interface passes without weakening the gate: add real logic to that same file later and its executable lines are measured and gated as usual.
test-patterns defaults to auto, which uses the built-in mappings for 19 languages. To teach Test-Guard a project-specific test layout, pass a JSON object. Each entry maps an arbitrary id to a src_pattern (glob identifying a source file) and a test_template (glob for the expected test, with a {name} placeholder for the source file's stem):
- uses: ostico/test-guard@v1
with:
test-patterns: |
{
"components": {"src_pattern": "src/**/*.tsx", "test_template": "src/**/__tests__/{name}.test.tsx"},
"services": {"src_pattern": "app/**/*.rb", "test_template": "spec/**/{name}_spec.rb"}
}How it resolves — for a changed file src/ui/Button.tsx, the components entry expands {name} to Button and looks for any repo file matching src/**/__tests__/Button.test.tsx:
- test file exists and changed in this PR → PASS
- test file exists but not changed in this PR → WARNING
- no matching test file → FAIL
Rules:
- Custom entries are merged on top of the built-in defaults — you keep auto-detection for every other language. Reusing a default id (e.g.
python) overrides just that entry. test_templatemust contain the{name}placeholder, and both fields must be strings — otherwise the run fails with a configuration error.- Globs use
fnmatchsemantics (*matches path separators too);**is conventional, not special.
Variant and multiple test files. Put a * next to {name} to match qualifier-suffixed test names, and note that a source can bind to several test files at once (unit + integration + e2e) — all matched tests are reviewed together:
test-patterns: |
{
"php": {"src_pattern": "lib/**/*.php", "test_template": "tests/**/{name}*Test.php"}
}For GetSearchController.php this matches both GetSearchControllerTest.php and GetSearchControllerReplaceUndoIntegrationTest.php. This is how you cover non-standard names (e.g. …UnitTest, …IntegrationTest, …RealSqlTest) that the exact-match defaults miss — either widen the template with *, or add a precise entry per convention. Names that encode no source at all (Rust #[cfg(test)], feature-named suites) can't be matched by any template; those stay unmatched and are size-bounded automatically.
Layer 3 uses the GitHub Models inference API. This works with your existing GITHUB_TOKEN — no external API keys needed.
models: readpermission in your workflow (see Quick Start above).- GitHub Models enabled for your account or organization:
- Personal repos: Go to github.com/marketplace/models and accept the terms. The free tier is sufficient.
- Organization repos: An organization owner must enable GitHub Models at the org level. Go to Organization Settings → Copilot → Policies and enable model access.
- Free tier limits: GitHub Models free tier allows ~150 requests/day with up to 8K input tokens per request. Test-Guard's smart batching is designed to stay within these limits.
| Symptom | Cause | Fix |
|---|---|---|
| 403 "Model not accessible" | GitHub Models not enabled | Enable at org or personal level (step 2 above) |
| 413 "Request body too large" | Diff exceeds model token limit | Automatic — smart batching handles this |
| Intermittent 429 errors | Rate limit exceeded | Reduce PR size or use ai-enabled: 'false' for low-priority PRs |
GitHub Models' free tier caps requests at 8K input tokens. A naive implementation hits that wall constantly on real PRs — Test-Guard avoids it with three layers working together: compaction (shrink each diff without losing signal), batching (group files so a call never exceeds the cap), and matching (only attach the test diffs that actually belong to this batch).
flowchart LR
subgraph Per file
A[Raw diff] --> B["Compact<br/>(unidiff: shed context lines,<br/>redact injection attempts)"]
B --> C{Still too big?}
C -->|yes| D["Priority truncate<br/>(keep signature/branch hunks<br/>+ highest-change hunks first)"]
C -->|no| E[Compacted diff]
D --> E
end
E --> F["Batch assembly<br/>(_batch_files: greedy pack by token cost)"]
F --> G["Batch-scoped test filter<br/>(a matched test rides only<br/>its own source's batch)"]
G --> H{"Assembled prompt<br/>> token budget?"}
H -->|yes| I["Hard ceiling<br/>(shed lowest-value test diffs,<br/>candidates before matches, largest first)"]
H -->|no| J["Evidence banner<br/>(states what was omitted)"]
I --> J
J --> K["Call the model<br/>(≤ 8K tokens, guaranteed)"]
style K fill:#0969da,color:#fff,stroke:#054594
Every diff is compacted before it ever reaches a prompt (src/layer3_ai.py):
- Context ladder: context lines (unchanged code around a change) are the first thing dropped — 3 lines → 1 → 0 — before any changed line is touched. Changed lines are the actual signal; context is filler.
- Priority truncation: when hunks still don't fit, they aren't dropped in file order — hunks introducing a signature, branch, or the most changed lines are kept first; boilerplate goes first.
- Test diffs get more room: test files get a 1.6× larger character budget than source files, because judging test adequacy is the whole point of Layer 3.
- Evidence-Completeness banner: if anything was dropped, the prompt says so explicitly (
## ⚠️ Evidence Completeness— N of M hunks shown, % of test hunks omitted) and tells the model to treat omitted code as unknown rather than assume it's fine.
Reproducible before/after numbers — including a real 29-file PR, both a raw-token axis and a signal-retention axis (to catch a "shrink" that just deletes everything) — live in benchmarks/.
When a PR touches many files or has large diffs, Test-Guard splits work into batches that fit within a hard-guaranteed per-call token budget (~6.1K user-prompt tokens, real GPT tokens via tiktoken when installed).
- Per-file cost: compacted source diff + its matched test diffs + per-entry overhead.
- Greedy packing: files are packed into the current batch until adding the next file would exceed the budget, then a new batch starts.
- Batch-scoped test matching: a test file matched to a source (Layer 2) travels only with that source's own batch — it no longer rides every batch in the PR. Only genuinely unmatched tests (name doesn't correlate to any source) remain "candidates" attached everywhere, and even those are size-bounded.
- Multi-test-per-source: one source can match several test files at once — e.g.
FooTest+FooIntegrationTest— all of them travel with that source's batch. Configure qualifier-tolerant patterns for this via custom test patterns if your defaults don't already cover it. - Hard ceiling (final guarantee): after assembly, if a batch prompt still exceeds the token budget, the lowest-value test diffs are shed one at a time (unmatched candidates before matched tests, largest first) until it fits. This is the backstop that makes the 8K limit unbreakable regardless of language or naming convention.
- Oversized single files: a file that exceeds the budget alone gets its own batch — the retry path handles it with tighter diff truncation.
When using the default model (openai/gpt-4.1-mini), Test-Guard automatically falls back to smaller models if the current model becomes unavailable:
openai/gpt-4.1-mini → openai/gpt-4.1-nano
- 403 (model forbidden): Escalates to the next model in the chain. If all models are exhausted, remaining files get SKIP verdicts.
- 413 (request too large): Retries the same model with tighter diff truncation (3K chars max). If still too large, reports the error for that batch.
- Custom model: When you set
ai-modelto a non-default value, no fallback chain is used — only your specified model is tried.
Test-Guard reports results in two places:
- PR Comment: Markdown report with per-layer results and a per-file verdict table.
- Check Run: A Test-Guard check appears in the PR's checks tab. Can be set as a required status check to block merges.
## 🧪 Test-Guard Report
**⚠️ WARNING** — Test coverage has minor gaps — review recommended.
### Coverage Analysis: ❌ FAIL
Changed lines: 45% covered (threshold: 80%)
| File | Verdict | Reason |
|---|---|---|
| `src/auth.py` | ✅ pass | 92% diff coverage ≥ 80% threshold |
| `src/billing.py` | ❌ fail | 25% diff coverage < 80% threshold |
| `src/new_feature.py` | ❌ fail | not in coverage report |
### Test File Matching: ❌ FAIL
File matching: 1 pass, 1 fail
| File | Verdict | Reason |
|:-----|:--------|:-------|
| `src/auth.py` | ✅ pass | Test modified: tests/test_auth.py |
| `src/billing.py` | ❌ fail | No matching test file |
### Per-File Evaluation: ⚠️ WARNING
Evaluated 3 files: 1 via AI (1 batch), 2 via shortcuts.
| File | Verdict | Reason |
|:-----|:--------|:-------|
| `src/auth.py` | ✅ pass | shortcut → coverage ≥ threshold |
| `src/utils.py` | ⏭️ skip | shortcut → trivial whitespace/comment change |
| `src/billing.py` | ⚠️ warning | AI: discount logic partially covered (confidence: 62%) |
**Result: ⚠️ WARNING**Layer 2 auto-detects test files for 19 languages:
| Language | Test conventions |
|---|---|
| Python | tests/test_{name}.py, **/{name}_test.py |
| JavaScript | **/{name}.test.js, **/{name}.spec.js, **/__tests__/{name}.js |
| JSX | **/{name}.test.jsx, **/{name}.spec.jsx, **/__tests__/{name}.jsx |
| TypeScript | **/{name}.test.ts, **/{name}.spec.ts, **/__tests__/{name}.ts |
| TSX | **/{name}.test.tsx, **/{name}.spec.tsx, **/__tests__/{name}.tsx |
| PHP | tests/{name}Test.php |
| Go | **/{name}_test.go |
| Java | **/{name}Test.java |
| Kotlin | **/{name}Test.kt |
| Ruby | **/{name}_spec.rb, **/test_{name}.rb |
| Rust | tests/{name}.rs |
| C# | **/{name}Tests.cs, **/{name}Test.cs |
| Swift | **/{name}Tests.swift, **/{name}Test.swift |
| Scala | **/{name}Spec.scala, **/{name}Test.scala |
| C | **/test_{name}.c |
| C++ | **/test_{name}.cpp, **/test_{name}.cc, **/test_{name}.cxx |
| Elixir | test/**/{name}_test.exs |
| Dart | test/**/{name}_test.dart |
| Lua | **/test_{name}.lua, **/{name}_spec.lua |
Layer 1 uses diff-cover, which auto-detects:
| Format | Extension | Detection |
|---|---|---|
| Cobertura | .xml |
<coverage> root with <packages> child |
| Clover | .xml |
<coverage> root with <project> child |
| JaCoCo | .xml |
<report> root with <package>/<sourcefile> structure |
| LCOV | .info |
Any non-XML file |
When tests run inside a Docker container (or any environment with a different filesystem root), coverage XML files record container-internal absolute paths like /var/www/app/lib/AuthCookie.php. These paths don't exist on the GitHub Actions runner, causing diff-cover to find zero file matches.
Test-Guard fixes this automatically. Before invoking diff-cover, Layer 1 detects the coverage format and normalizes paths:
| Format | How it works |
|---|---|
| Clover | Reads <file name="..."> paths, suffix-matches against PR file list to detect the container prefix (e.g., /var/www/app/), rewrites paths to relative. |
| Cobertura | Checks <class filename="..."> — if absolute, detects the prefix and rewrites to relative. If already relative (e.g., pytest-cov output), no action. |
| JaCoCo | Uses diff-cover's built-in --src-roots handling. |
| LCOV | No XML normalization possible — ensure paths are relative in your LCOV output. |
Zero configuration required. The prefix is auto-detected by matching coverage file paths against the PR's changed files. A ::warning:: annotation is emitted when normalization activates so you can verify it's working.
- uses: ostico/test-guard@v1
with:
coverage-file: coverage.xml- uses: ostico/test-guard@v1
# Layer 1 skips, Layer 3 shortcuts use test relevance only- uses: ostico/test-guard@v1
with:
ai-enabled: 'false'
# Layer 2 becomes the gate (short-circuits on all-PASS)- uses: ostico/test-guard@v1
with:
coverage-file: coverage.xml
coverage-threshold: '95'
ai-confidence-threshold: '0.8'- uses: ostico/test-guard@v1
with:
coverage-file: |
php-coverage.xml
js-coverage.xmlComma-separated also works: coverage-file: 'php-coverage.xml,js-coverage.xml'
If Test-Guard is useful to you, consider supporting its development:
MIT