Fuzz BMP #1005
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 BMP | |
| on: | |
| push: | |
| branches: [ "main","dev" ] | |
| paths: | |
| - 'crates/zune-bmp/**' | |
| schedule: | |
| - cron: '0 0 * * *' | |
| pull_request: | |
| branches: [ "main" ,"dev" ] | |
| paths: | |
| - 'crates/zune-bmp/**' | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: dtolnay/rust-toolchain@nightly | |
| - name: Install | |
| run: cargo install cargo-fuzz | |
| - name: Normal Fuzz testing. | |
| run: cargo +nightly fuzz run --fuzz-dir crates/zune-bmp/fuzz decode_buffer test-images/bmp -j2 -- -timeout=10s -max_total_time=120 | |