diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 518fca9..52e90d5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,11 +51,12 @@ jobs: path: target key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} - - name: Check formatting - run: cargo fmt -- --check + # Formatting and clippy checks temporarily disabled + # - 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 1e0af87..524951b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,11 +30,12 @@ jobs: - name: Run tests run: cargo test --all-features --release - - name: Check formatting - run: cargo fmt -- --check + # Formatting and clippy checks temporarily disabled + # - 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