From 3fd81d83a1360f5a3be8651ea4fc1f962f1acf02 Mon Sep 17 00:00:00 2001 From: Stefano Amorelli Date: Sun, 17 Aug 2025 13:39:55 +0300 Subject: [PATCH] Revert "ci: temporarily disable fmt/clippy in CI workflow" This reverts commit 20810e8bc4fecf391256543d32add143994847c0. --- .github/workflows/ci.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 045de87..518fca9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,12 +51,11 @@ jobs: path: target key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} - # Temporarily disabled - will fix formatting in follow-up - # - name: Check formatting - # run: cargo fmt -- --check + - name: Check formatting + run: cargo fmt -- --check - # - name: Run clippy - # run: cargo clippy --all-features -- -D warnings + - name: Run clippy + run: cargo clippy --all-features -- -D warnings - name: Build run: cargo build --verbose --all-features