From 5422a3e8b2720e2fb3a89d80266bbb613d0c247c Mon Sep 17 00:00:00 2001 From: Stefano Amorelli Date: Sat, 16 Aug 2025 17:34:58 +0300 Subject: [PATCH] Revert "ci: temporarily disable fmt and clippy checks" This reverts commit cdb0e893f7545f333df53c7e46085b0c43fac877. --- .github/workflows/ci.yml | 9 ++++----- .github/workflows/release.yml | 9 ++++----- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 52e90d5..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') }} - # Formatting and clippy checks temporarily disabled - # - 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 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 524951b..1e0af87 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,12 +30,11 @@ jobs: - name: Run tests run: cargo test --all-features --release - # Formatting and clippy checks temporarily disabled - # - 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 publish-crates-io: name: Publish to crates.io