We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c8cb47 commit 465d5a6Copy full SHA for 465d5a6
.github/workflows/fuzz-go.yml
@@ -106,7 +106,8 @@ jobs:
106
# support cross-module testing, and the provided directory may be in
107
# a different module.
108
cd "${{ matrix.package }}"
109
- go test -fuzz="${{ matrix.function }}\$" -run="${{ matrix.function }}\$" -fuzztime="${FUZZ_TIME}" .
+ # Note: -parallel=1 is required to avoid race conditions in the fuzzer until https://github.com/golang/go/issues/56238 is fixed.
110
+ go test -parallel=1 -fuzz="${{ matrix.function }}\$" -run="${{ matrix.function }}\$" -fuzztime="${FUZZ_TIME}" .
111
env:
112
FUZZ_TIME: ${{ inputs.fuzz-time }}
113
0 commit comments