Skip to content

Fuzz tests

Fuzz tests #704

Workflow file for this run

name: Fuzz tests
on:
schedule:
# https://crontab.guru/#05_14_*_*_*
- cron: "05 14 * * *"
workflow_dispatch:
jobs:
fuzz:
name: Fuzz tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5
with:
go-version: ">=1.22.0"
- run: go run mage.go fuzz
- run: |
gh issue create --title "$GITHUB_WORKFLOW #$GITHUB_RUN_NUMBER failed" \
--body "See [$GITHUB_WORKFLOW #$GITHUB_RUN_NUMBER](https://github.com/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID)."
if: failure() && github.run_attempt == 1
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}