Skip to content

Commit

Permalink
build: print Fuzz files after failure
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdecaf committed Nov 6, 2023
1 parent 9342a96 commit 1598407
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,13 @@ jobs:
- name: Fuzz
run: |
go test ./test/fuzz/... -fuzz JSON -fuzztime 10m
report:
name: Report Failures
runs-on: ubuntu-latest
needs: [fuzz-icl, fuzz-json]
steps:
- name: Report Failures
if: ${{ failure() }}
run: |
tail -n +1 ./testdata/fuzz/Fuzz*/*

0 comments on commit 1598407

Please sign in to comment.