Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,10 @@ jobs:

fuzz:
name: fuzz smoke (60s per target)
# Fuzz is expensive (~10 minutes for 10 targets x 60s) and rarely
# surfaces regressions that block a PR. Run only on pushes to main
# so PR cycle time stays short; main still gets the post-merge sweep.
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
Loading