Skip to content

fuzz

fuzz #9668

Workflow file for this run

name: fuzz
on:
workflow_dispatch: {}
schedule:
- cron: '54 * * * *'
jobs:
fuzz:
name: fuzz
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: WillAbides/setup-go-faster@v1
id: setup-go
with:
go-version: '1.25'
- uses: actions/cache@v3
with:
path: |
${{ steps.setup-go.outputs.GOCACHE }}
${{ steps.setup-go.outputs.GOMODCACHE }}
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-go-
- name: restore corpus
shell: bash
run: |
if [ -z "$(git ls-remote --heads https://github.com/willabides/rjson fuzz-update)" ]; then
exit
fi
git restore -s origin/fuzz-update testdata/fuzz
- run: script/fuzz-timeout 300
- uses: peter-evans/[email protected]
with:
branch: fuzz-update
title: update fuzz data
delete-branch: true
body: update fuzz data