fuzz.yml 369 B

123456789101112131415161718
  1. on:
  2. push:
  3. branches: [ staging, trying ]
  4. pull_request:
  5. name: Fuzz
  6. jobs:
  7. fuzz:
  8. runs-on: ubuntu-22.04
  9. env:
  10. RUSTUP_TOOLCHAIN: nightly
  11. steps:
  12. - uses: actions/checkout@v2
  13. - name: Install cargo-fuzz
  14. run: cargo install cargo-fuzz
  15. - name: Fuzz
  16. run: cargo fuzz run packet_parser -- -max_len=1536 -max_total_time=30