Skip to content

Commit

Permalink
CI: Remove actions-rs/clippy-check GH action
Browse files Browse the repository at this point in the history
  • Loading branch information
tatsuya6502 committed Feb 11, 2024
1 parent e6e71be commit 612ead1
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/Lints.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}

Expand Down

0 comments on commit 612ead1

Please sign in to comment.