From 68bf254b162bab2acd77533065632c49d00a7763 Mon Sep 17 00:00:00 2001 From: rUv Date: Fri, 26 Dec 2025 21:26:43 +0000 Subject: [PATCH] ci(postgres): Scope fmt check to postgres crate only MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- .github/workflows/ruvector-postgres-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ruvector-postgres-ci.yml b/.github/workflows/ruvector-postgres-ci.yml index 70ac6fa1..6b541426 100644 --- a/.github/workflows/ruvector-postgres-ci.yml +++ b/.github/workflows/ruvector-postgres-ci.yml @@ -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