Scheduled Fuzz Testing #2677
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Scheduled Fuzz Testing | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| # Run every 6 hours | |
| - cron: "0 0,6,12,18 * * *" | |
| permissions: | |
| contents: read | |
| jobs: | |
| MerkleDB: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Git checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: ./.github/actions/setup-go-for-project | |
| - name: Run merkledb fuzz tests | |
| run: ./scripts/run_task.sh test-fuzz-merkledb |