From e539dff62fd408c47055fb0ff78ca9eb442ab525 Mon Sep 17 00:00:00 2001 From: clawbot Date: Mon, 9 Mar 2026 20:41:46 -0700 Subject: [PATCH] ci: explicitly install rustfmt and clippy via rustup component add --- .gitea/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 7cf6f64..6169c3c 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -19,7 +19,9 @@ jobs: uses: actions-rust-lang/setup-rust-toolchain@v1 with: toolchain: stable - components: rustfmt, clippy + + - name: Install rustfmt and clippy + run: rustup component add rustfmt clippy - name: Build run: cargo build --release @@ -45,7 +47,6 @@ jobs: uses: actions-rust-lang/setup-rust-toolchain@v1 with: toolchain: stable - components: rustfmt, clippy - name: Build release binary run: cargo build --release