Skip to content

Commit

Permalink
Give the fuzzer its own clippy CI
Browse files Browse the repository at this point in the history
  • Loading branch information
juntyr committed Oct 3, 2023
1 parent cf1bbdb commit 9294a3b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,22 @@ jobs:
- run: cargo clippy --features integer128 -- -D warnings
- run: cargo clippy --features indexmap -- -D warnings
- run: cargo clippy --all-features -- -D warnings

clippy-fuzz:
name: "Clippy: Fuzzer"
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
with:
key: clippy-fuzz
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
components: clippy
override: true
- run: cd fuzz && cargo clippy --all -- -D warnings

rustfmt:
Expand Down

0 comments on commit 9294a3b

Please sign in to comment.