We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac3f2b4 commit 94302bcCopy full SHA for 94302bc
.github/workflows/fuzz.yml
@@ -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
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