ci(postgres): Scope fmt check to postgres crate only

The --all flag checks all workspace members which includes crates
outside of the postgres extension scope. Since this CI is specifically
for ruvector-postgres, only check formatting for that crate.

This prevents failures from unformatted files in other crates that
get included in the PR merge commit.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
rUv 2025-12-26 21:26:43 +00:00
parent 23c40d3c37
commit 68bf254b16

View file

@ -86,7 +86,7 @@ jobs:
working-directory: crates/ruvector-postgres
- name: Check formatting
run: cargo fmt --all -- --check
run: cargo fmt -- --check
working-directory: crates/ruvector-postgres
- name: Run Clippy