Skip to content

Commit

Permalink
Create fuzzing.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
wneessen authored Oct 18, 2022
1 parent efff6a7 commit 8142010
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/fuzzing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Go fuzzing
on:
push:
branches:
- main
paths:
- '**.go'
- 'go.*'
pull_request:
branches:
- main
paths:
- '**.go'
- 'go.*'
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
go: [1.19]
steps:
- name: Checkout Code
uses: actions/checkout@master

- name: Run Fuzzing Tests
run: |
go test -v -race -fuzz=. --fuzztime=10s . && go test -v -race -fuzz=. --fuzztime=10s ./rfc3164 && go test -v -race -fuzz=. --fuzztime=10s ./rfc5424

0 comments on commit 8142010

Please sign in to comment.