-
Notifications
You must be signed in to change notification settings - Fork 44
46 lines (45 loc) · 1.09 KB
/
go-fuzz.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
on: [ push, pull_request ]
name: Go Fuzz
jobs:
v1:
strategy:
fail-fast: true
matrix:
target: [ "CarReader" ]
runs-on: ubuntu-latest
name: Fuzz V1 ${{ matrix.target }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-go@v5
with:
go-version: 1.18.x
- name: Go information
run: |
go version
go env
- name: Run Fuzzing for 1m
run: go test -v -fuzz=Fuzz${{ matrix.target }} -fuzztime=1m .
v2:
strategy:
fail-fast: true
matrix:
target: [ "BlockReader", "Reader", "Inspect" ]
runs-on: ubuntu-latest
name: Fuzz V2 ${{ matrix.target }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-go@v5
with:
go-version: 1.18.x
- name: Go information
run: |
go version
go env
- name: Run Fuzzing for 1m
run: |
cd v2
go test -v -fuzz=Fuzz${{ matrix.target }} -fuzztime=1m .