Commit 1217e2d
fix(ci): quote store:: test filter so db-checks.yml parses on GitHub (#107)
`db-checks.yml` has **never run**. The step
```yaml
run: cargo test --lib store::
```
ends in `::`, which is not a valid unquoted plain scalar in YAML block
context, so GitHub rejects the **entire workflow file** at parse time:
`startup_failure`, zero jobs, and — the part that hides it — **no check
run at all**. `gh pr checks` shows nothing missing, because a workflow
that never parsed never reports.
Quoting the value fixes it. Verified with a strict YAML parse before and
after; this was the only file of the 29 in the repo that failed to parse
(all 33 in `echidna` are clean).
Once merged, `gh run list --workflow=db-checks.yml` should show a real
run for the first time — which also means the migration/schema-drift
gate it contains starts actually gating.
---------
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>1 parent d52647e commit 1217e2d
2 files changed
Lines changed: 1 addition & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
22 | | - | |
23 | 22 | | |
24 | 23 | | |
25 | 24 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
33 | 33 | | |
34 | 34 | | |
35 | 35 | | |
36 | | - | |
37 | 36 | | |
38 | 37 | | |
39 | 38 | | |
| |||
125 | 124 | | |
126 | 125 | | |
127 | 126 | | |
128 | | - | |
| 127 | + | |
129 | 128 | | |
130 | 129 | | |
131 | 130 | | |
| |||
0 commit comments