JobStore trait methods return owned types instead of refs
#60
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Fuzz Regression Check | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| fuzz: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install Rust | |
| uses: dtolnay/rust-toolchain@nightly | |
| - name: Install cargo-fuzz | |
| run: cargo install cargo-fuzz | |
| - name: Checkout fuzzing corpus | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: stratum-mining/stratum-fuzzing-corpus | |
| path: fuzz/repo-corpus | |
| - name: Run fuzz regressions | |
| run: | | |
| for TARGET in $(cargo fuzz list); do | |
| echo "==> Running fuzz target: $TARGET" | |
| cargo fuzz run $TARGET fuzz/repo-corpus/corpus/$TARGET -- -runs=0 -max_total_time=30 | |
| done | |