We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a74e4cd commit c75a2d6Copy full SHA for c75a2d6
1 file changed
.github/workflows/fuzz-test.yml
@@ -19,9 +19,8 @@ jobs:
19
# We have to identify which package contains fuzz tests then execute them.
20
# See https://github.com/golang/go/issues/46312.
21
# An alternative to using jq and matrix is to use (or rewrite): https://github.com/demurky/gofuzz/
22
- id: fuzz-matrix
23
runs-on: ubuntu-latest
24
- outputs: ${{ steps.get-fuzz-tests.tests }}
+ outputs: ${{ steps.get-fuzz-tests.outputs.matrix }}
25
steps:
26
-
27
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
@@ -39,7 +38,7 @@ jobs:
39
38
name: Fuzz tests matrix
40
id: get-fuzz-tests
41
run: |
42
- # multiple tests, multiple packages, multiple modules
+ # Suppports: multiple tests, multiple packages, multiple modules
43
fuzz_tests=$(\
44
go test work -list Fuzz -json ./... |\
45
jq '.|select(.Action == "output")|\
0 commit comments