From 1ac38f36516df10e4ba4fe88eb5306963f1b00e3 Mon Sep 17 00:00:00 2001 From: Marek Kaput Date: Wed, 1 Oct 2025 14:17:48 +0200 Subject: [PATCH] Add rustfmt and clippy components to CI workflow Signed-off-by: Marek Kaput --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 83e4a4c..079a1d9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,6 +13,8 @@ jobs: steps: - uses: actions/checkout@v5 - uses: dtolnay/rust-toolchain@stable + with: + components: rustfmt, clippy - uses: Swatinem/rust-cache@v2 - run: cargo fmt --check - run: cargo clippy --all-targets --all-features -- --no-deps