Skip to content

Commit

Permalink
build: Add fuzz testing checks
Browse files Browse the repository at this point in the history
Signed-off-by: Paulo Gomes <pjbgf@linux.com>
  • Loading branch information
pjbgf committed Nov 29, 2024
1 parent 178d0c0 commit c5d8cfd
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,26 @@ jobs:

- run: make verify
- run: make test

fuzz:
runs-on: ubuntu-latest

permissions:
contents: read
actions: read # for cache access

steps:
- name: Checkout
uses: actions/checkout@cbb722410c2e876e24abbe8de2cc27693e501dcb # v4.2.2

- name: Set up Go
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
with:
go-version: stable

- name: Fuzzing
uses: form3tech-oss/go-ci-fuzz/ci/github-actions/fuzz@2b38b4142d7fa5dde3823e60a358c28ed17635df # v0.1.3
with:
fuzz-time: 15s
fail-fast: true
version: v0.1.3

0 comments on commit c5d8cfd

Please sign in to comment.