Run fuzz tests #500
This file contains 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: Run fuzz tests | |
on: | |
schedule: | |
- cron: "0 0 * * *" # Once a day at midnight UTC | |
permissions: | |
contents: read | |
jobs: | |
fuzz: | |
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 fuzz tests | |
shell: bash | |
run: ./scripts/build_fuzz.sh 180 # Run each fuzz test 180 seconds |