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 344272c commit 9ce356aCopy full SHA for 9ce356a
action.yml
@@ -13,14 +13,14 @@ runs:
13
run: |
14
status=0
15
for dir in $(find . \( -name vendor -o -name '[._].*' -o -name node_modules \) -prune -o -name go.mod -print | sed 's:/go.mod$::'); do
16
- echo "#=#=#=# $dir #=#=#=#"
17
pushd $dir > /dev/null
+ echo "::group::$dir"
18
(
19
${{ inputs.run }}
20
)
21
+ echo "::endgroup::"
22
s=$?
23
if [[ $s != 0 ]]; then status=$s; fi
24
popd > /dev/null
- echo -e "\n\n"
25
done
26
exit $status
0 commit comments