Skip to content

Commit

Permalink
Add daily fuzzing action (ava-labs#1635)
Browse files Browse the repository at this point in the history
  • Loading branch information
danlaine committed Jun 21, 2023
1 parent ac3f2b4 commit 94302bc
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Run fuzz tests

on:
schedule:
- cron: "0 0 * * *"

permissions:
contents: read

jobs:
fuzz:
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v3
with:
ref: 'dev'
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '~1.19.6'
check-latest: true
- name: Run fuzz tests
shell: bash
run: ./scripts/build_fuzz.sh 30 # Run each fuzz test 30 seconds

0 comments on commit 94302bc

Please sign in to comment.