From 97df4fe21582ccc95d422a3bd855d5dfd3389abb Mon Sep 17 00:00:00 2001 From: xtqqczze <45661989+xtqqczze@users.noreply.github.com> Date: Sat, 29 Nov 2025 22:09:14 +0000 Subject: [PATCH] ci: add clippy job --- .github/workflows/ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 47d33a4a..59b7be93 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -262,3 +262,17 @@ jobs: - name: Verify fuzz targets build run: cargo check working-directory: fuzz + + clippy: + permissions: + checks: write + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + persist-credentials: false + - uses: dtolnay/rust-toolchain@master + with: + toolchain: nightly + components: clippy + - run: cargo clippy --all-features --all-targets --workspace -- --allow warnings