Skip to content

Commit

Permalink
ci/cd: Update clippy applied rules
Browse files Browse the repository at this point in the history
  • Loading branch information
vpetrigo committed Aug 22, 2024
1 parent 1832049 commit 5e83309
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand Down

0 comments on commit 5e83309

Please sign in to comment.