From e617cf34779f5dc077dc572cc39573096fb7b064 Mon Sep 17 00:00:00 2001 From: Pawan Singh Date: Sun, 28 Jun 2026 16:11:24 -0700 Subject: [PATCH] Fix CI Rust toolchain install step. Use dtolnay/rust-toolchain@stable so rustfmt and clippy are installed from rust-toolchain.toml instead of a broken rustup command that parsed clippy as a toolchain name. Co-authored-by: Cursor --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 00fc34b..06e1774 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,8 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Install Rust - run: rustup toolchain install stable --component rustfmt clippy --profile minimal + - uses: dtolnay/rust-toolchain@stable - uses: Swatinem/rust-cache@v2 - name: Format run: cargo fmt --all -- --check