Skip to content

Update bincode requirement from 2 to 3 #163

Update bincode requirement from 2 to 3

Update bincode requirement from 2 to 3 #163

Workflow file for this run

name: Fuzz Testing
on:
push:
branches:
- main
paths-ignore:
- "README.md"
- "COPYRIGHT"
- "LICENSE*"
- "**.md"
- "**.txt"
- "art"
pull_request:
paths-ignore:
- "README.md"
- "COPYRIGHT"
- "LICENSE*"
- "**.md"
- "**.txt"
- "art"
schedule: [cron: "0 1 */7 * *"]
jobs:
fuzz:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
- name: Install cargo-fuzz
run: cargo install cargo-fuzz
- name: Run fuzzing
run: |
cargo fuzz build
cargo fuzz run messages -- -max_total_time=300