From 6e68df6d88edc6fca239108f026cb90ec6039749 Mon Sep 17 00:00:00 2001 From: Riccardo Mazzarini Date: Fri, 27 Oct 2023 19:51:22 +0200 Subject: [PATCH] ci: run `clippy` --- .github/workflows/ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d11c4da..3447801 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,6 +27,16 @@ jobs: - uses: dtolnay/rust-toolchain@nightly - run: cargo bench --all-features --no-run + clippy: + name: clippy + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: dtolnay/rust-toolchain@nightly + with: + components: clippy + - run: cargo clippy --all-features --all-targets -- -D warnings + docs: name: docs runs-on: ubuntu-latest