-
Notifications
You must be signed in to change notification settings - Fork 48
57 lines (49 loc) · 1.23 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
name: Go Fuzz Testing
on:
workflow_dispatch:
# schedule:
# - cron: "0 0 * * *"
permissions:
contents: read
jobs:
fuzz-ach:
name: Fuzz Metro2
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
timeout-minutes: 12
steps:
- name: 'Collect Workflow Telemetry'
uses: catchpoint/workflow-telemetry-action@v1
env:
GITHUB_TOKEN: ""
with:
github_token: ${{ github.token }}
comment_on_pr: false
job_summary: true
theme: dark
- name: Set up Go 1.x
uses: actions/setup-go@v4
with:
go-version: stable
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Fuzz
run: |
go test ./test/fuzz/... -fuzz Fuzz -fuzztime 10m
- name: Report Failures
if: ${{ failure() }}
run: |
find ./test/fuzz/testdata/fuzz/ -type f | xargs -n1 tail -n +1 -v