Skip to content

Commit

Permalink
fix fuzzing in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
glendc committed Apr 9, 2024
1 parent 60959c5 commit 656c546
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,13 @@ jobs:
cargo sort --workspace --grouped --check
cargo-deny:
needs: [check, check-msrv]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: EmbarkStudios/cargo-deny-action@v1

cargo-fuzz:
needs: [check, check-msrv]
runs-on: ubuntu-latest
steps:
Expand All @@ -337,4 +344,4 @@ jobs:
cargo install cargo-fuzz
- name: cargo fuzz check
run: |
cargo fuzz run -max-total-time=30 fuzz_employee_db
cargo fuzz run fuzz_employee_db -- -max-total-time=30

0 comments on commit 656c546

Please sign in to comment.