Skip to content

Run fuzz tests

Run fuzz tests #1098

Workflow file for this run

name: Run fuzz tests
on:
schedule:
- cron: "0 0 * * *" # Once a day at midnight UTC
workflow_dispatch:
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
permissions:
contents: read
jobs:
fuzz:
name: fuzz (${{ matrix.shard }})
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
shard:
- database
- codec
- utils
- x/archivedb
- vms/platformvm
- vms/evm
- vms/saevm
- simplex
- graft
steps:
- name: Git checkout
uses: actions/checkout@v5
- name: Set up Go
uses: ./.github/actions/setup-go-for-project
- name: Run fuzz tests
run: ./scripts/run_task.sh test-fuzz-long -- ./${{ matrix.shard }}