Skip to content

Commit 0407c7e

Browse files
hyperpolymathclaude
andcommitted
fix(ci): quote store:: test filter so db-checks.yml parses on GitHub
The unquoted trailing '::' in 'cargo test --lib store::' is invalid plain-scalar YAML in block context, so GitHub rejected the entire workflow at parse time: startup_failure, zero jobs, no check run. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent d52647e commit 0407c7e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/db-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ jobs:
125125
echo "repositories columns OK ✓"
126126
127127
- name: Store-layer round-trip tests
128-
run: cargo test --lib store::
128+
run: 'cargo test --lib store::'
129129

130130
- name: Summary
131131
if: always()

0 commit comments

Comments
 (0)