Skip to content

Fuzz tests

Fuzz tests #546

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@v4
- uses: actions/setup-go@v5
with:
go-version: ">=1.20.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 }}