From 5e833093f2ba0ef17b432a60c3e3c468bbd25d46 Mon Sep 17 00:00:00 2001 From: Vladimir Petrigo Date: Thu, 22 Aug 2024 21:53:16 +0200 Subject: [PATCH] ci/cd: Update clippy applied rules --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7f51c9f..28474e4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,11 +14,11 @@ jobs: steps: - uses: actions/checkout@v3 - name: Run clippy with std - run: cargo clippy --no-default-features --features="std log utils" + run: cargo clippy --no-default-features --features="std log utils" -- -D clippy::all -D clippy::pedantic - name: Run clippy with no_std - run: cargo clippy --no-default-features --features="log" + run: cargo clippy --no-default-features --features="log" -- -D clippy::all -D clippy::pedantic - name: Run clippy for tokio feature - run: cargo clippy --features="tokio" + run: cargo clippy --features="tokio" -- -D clippy::all -D clippy::pedantic clippy_async_no_std: runs-on: ubuntu-latest container: @@ -30,7 +30,7 @@ jobs: - name: Install clippy run: rustup component add clippy --toolchain nightly - name: Run clippy for async feature - run: cargo +nightly clippy --no-default-features --features="async" + run: cargo +nightly clippy --no-default-features --features="async" -- -D clippy::all -D clippy::pedantic check_format: runs-on: ubuntu-latest steps: