From 612ead14980d107d7f67048282b00dc19328b7b5 Mon Sep 17 00:00:00 2001 From: Tatsuya Kawano Date: Sun, 11 Feb 2024 02:03:55 +0000 Subject: [PATCH] CI: Remove `actions-rs/clippy-check` GH action --- .github/workflows/Lints.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/Lints.yml b/.github/workflows/Lints.yml index a51b4a30..feee0cd9 100644 --- a/.github/workflows/Lints.yml +++ b/.github/workflows/Lints.yml @@ -28,6 +28,8 @@ jobs: if: needs.pre_job.outputs.should_skip != 'true' runs-on: ubuntu-latest strategy: + # Continue running other jobs in the matrix even if one fails. + fail-fast: false matrix: rust: - toolchain: stable @@ -45,12 +47,11 @@ jobs: components: rustfmt, clippy - name: Run Clippy - uses: actions-rs/clippy-check@v1 - with: - token: ${{ secrets.GITHUB_TOKEN }} - # Specify individual features until we remove `dash` feature. - # args: --lib --tests --all-features --all-targets -- -D warnings - args: --lib --tests --features 'future, logging, unstable-debug-counters' --all-targets -- -D warnings + # Specify individual features until we remove `dash` feature. + run: | + cargo clippy --lib --tests \ + --features 'future, logging, unstable-debug-counters' \ + --all-targets -- -D warnings env: RUSTFLAGS: ${{ matrix.rust.rustflags }}