Skip to content

Fuzz

Fuzz #114

Workflow file for this run

name: Fuzz
on:
schedule:
- cron: '0 4 * * *'
workflow_dispatch:
jobs:
fuzz:
runs-on: ubuntu-latest
strategy:
matrix:
target:
- { pkg: ./internal/sse, fn: FuzzParse }
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: '1.26'
- run: go test -run=^$ -fuzz=^${{ matrix.target.fn }}$ -fuzztime=10m ${{ matrix.target.pkg }}