From 1157dc50275df8d5e6b0d04740c7e17730c516d4 Mon Sep 17 00:00:00 2001 From: Connor Tsui Date: Sat, 9 Nov 2024 16:01:08 -0500 Subject: [PATCH] remove reviewdog clippy Use `cargo clippy` command directly instead of the actions --- .github/workflows/check.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 656a20b..33cf544 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -60,11 +60,7 @@ jobs: toolchain: ${{ matrix.toolchain }} components: clippy - name: cargo clippy - uses: giraffate/clippy-action@v1 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - reporter: 'github-pr-check' - clippy_flags: --locked --all-targets -- -D warnings + run: cargo clippy --locked --all-targets --all-features -- -D warnings doc: # run docs generation on nightly rather than stable. This enables features like # https://doc.rust-lang.org/beta/unstable-book/language-features/doc-cfg.html which allows an