Skip to content

Commit

Permalink
Simplify the fuzz matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
FollowTheProcess committed Dec 17, 2024
1 parent d5a7ac4 commit 715259d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
id: set-matrix
shell: bash
run: |
MATRIX=$(go test -list ^Fuzz -json -run ^$ | jq -r 'select(.Output? != null and (.Output | type == "string") and (.Output | startswith("Fuzz"))) | .Output' | jq -R -s -c 'split("\n") | map(select(length > 0))')
MATRIX=$(go test -list ^Fuzz -run ^$ | grep '^Fuzz' | jq --raw-input --slurp 'split("\n") | map(select(length > 0))')
echo "matrix=$MATRIX"
echo "matrix=$MATRIX" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 715259d

Please sign in to comment.