From 274a832c8cb04d1f2c6253607a53d92a7e63a803 Mon Sep 17 00:00:00 2001 From: Diogo Mendes Matsubara Date: Thu, 22 May 2025 12:38:18 +0200 Subject: [PATCH] ci: install rust components --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1022793c..66113a7c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,6 +29,10 @@ jobs: with: options: "--check --diff -C" + - name: Install rust components + run: | + rustup component add clippy rustfmt + - name: Run rustfmt run: cargo fmt --check -- --config "unstable_features=true,imports_granularity=Crate,group_imports=StdExternalCrate"