From c71ba13b6d38a0e410d5bd9fd6bb6bb97f1d9a53 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Wed, 7 Jan 2026 13:14:47 -0600 Subject: [PATCH] Avoid checking formatting of all files during windows trampoline checks (#17348) I've noticed this escapes the trampoline crates so these fail whenever there's bad formatting in the workspace. Co-authored-by: Claude --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 93b2cd224..b934188aa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -437,7 +437,7 @@ jobs: - name: "rustfmt" working-directory: ${{ env.UV_WORKSPACE }}/crates/uv-trampoline - run: cargo fmt --all --check + run: cargo fmt --check - name: "Clippy" working-directory: ${{ env.UV_WORKSPACE }}/crates/uv-trampoline