Skip to content

Commit

Permalink
run clippy on MSRV
Browse files Browse the repository at this point in the history
+ tweak to get CI to run again
  • Loading branch information
teoxoy authored and kvark committed Mar 18, 2023
1 parent 7610255 commit 7f13ae8
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v3

- name: Install MSRV toolchain
run: rustup toolchain install $MSRV --no-self-update --profile=minimal
run: rustup toolchain install $MSRV --no-self-update --profile=minimal --component clippy

- name: Install nightly toolchain
run: rustup toolchain install nightly --no-self-update --profile=minimal
Expand All @@ -29,7 +29,7 @@ jobs:
- run: cargo +nightly hack generate-lockfile --remove-dev-deps -Z minimal-versions --offline

- name: Test all features
run: cargo +$MSRV check --all-features --workspace
run: cargo +$MSRV clippy --all-features --workspace -- -D warnings

test:
name: Test
Expand Down Expand Up @@ -75,16 +75,6 @@ jobs:
cd fuzz
cargo check
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- run: rustup component add clippy

- run: cargo clippy --all-features --workspace -- -D warnings

documentation:
name: Documentation
runs-on: ubuntu-latest
Expand Down

0 comments on commit 7f13ae8

Please sign in to comment.