chore: fix type

This commit is contained in:
Kevin Franklin Kim 2021-11-24 16:17:55 +01:00
parent d76af50c83
commit 21c238e39a

View File

@ -24,7 +24,7 @@ jobs:
- uses: actions/checkout@v2
- id: set-matrix
run: |
matrix=$(find . -type file -name "go.mod" -print0 | xargs -0 -n1 dirname | sort --unique | jq -R -s -c 'split("\n")[:-1]')
matrix=$(find . -type f -name "go.mod" -print0 | xargs -0 -n1 dirname | sort --unique | jq -R -s -c 'split("\n")[:-1]')
echo "${matrix}"
echo "::set-output name=matrix::${matrix}"
go_lint: