ZKAC/.github/workflows/fuzz-smoke.yml
everbarry d5ae07973a polish and self-contain file-share demo UI
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-07 18:39:39 +02:00

26 lines
674 B
YAML

name: fuzz-smoke
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
jobs:
libfuzzer:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Install cargo-fuzz
uses: taiki-e/install-action@cargo-fuzz
- name: Build fuzz targets (no sanitizer — stable)
run: cargo fuzz build -s none
working-directory: ${{ github.workspace }}
- name: Smoke all libFuzzer targets
run: bash scripts/fuzz-libfuzzer.sh
working-directory: ${{ github.workspace }}
env:
FUZZ_RUNS: "2000"