From 78e6816b06a0cb7c6072c58050abf31cbbf4fb64 Mon Sep 17 00:00:00 2001 From: Adam Chalmers Date: Tue, 19 Mar 2024 19:02:49 -0500 Subject: [PATCH] Always run cargo clippy in CI (#1772) It's now a required job before merge is allowed. Unfortunately GitHub now blocks any non-Rust PR, because they require cargo clippy but don't trigger it to run. Solution is simple, just always run cargo clippy, so it can pass, so that merge is allowed. --- .github/workflows/cargo-clippy.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/cargo-clippy.yml b/.github/workflows/cargo-clippy.yml index f18944e47..93e066ef3 100644 --- a/.github/workflows/cargo-clippy.yml +++ b/.github/workflows/cargo-clippy.yml @@ -9,12 +9,6 @@ on: - '**.rs' - .github/workflows/cargo-clippy.yml pull_request: - paths: - - '**/Cargo.toml' - - '**/Cargo.lock' - - '**/rust-toolchain.toml' - - '**.rs' - - .github/workflows/cargo-build.yml concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} cancel-in-progress: true