Revert "ci: temporarily disable fmt and clippy checks"

This reverts commit cdb0e893f7.
This commit is contained in:
Stefano Amorelli
2025-08-16 17:34:58 +03:00
parent cdb0e893f7
commit 5422a3e8b2
2 changed files with 8 additions and 10 deletions

View File

@@ -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

View File

@@ -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