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