Skip to content

Commit 94302bc

Browse files
author
Dan Laine
authored
Add daily fuzzing action (ava-labs#1635)
1 parent ac3f2b4 commit 94302bc

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/fuzz.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Run fuzz tests
2+
3+
on:
4+
schedule:
5+
- cron: "0 0 * * *"
6+
7+
permissions:
8+
contents: read
9+
10+
jobs:
11+
fuzz:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Git checkout
15+
uses: actions/checkout@v3
16+
with:
17+
ref: 'dev'
18+
- name: Set up Go
19+
uses: actions/setup-go@v3
20+
with:
21+
go-version: '~1.19.6'
22+
check-latest: true
23+
- name: Run fuzz tests
24+
shell: bash
25+
run: ./scripts/build_fuzz.sh 30 # Run each fuzz test 30 seconds

0 commit comments

Comments
 (0)