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 1cf6d20 commit 3b4208dCopy full SHA for 3b4208d
action.yml
@@ -15,12 +15,10 @@ runs:
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
18
- set +e -x
+ s=0
19
(
20
${{ inputs.run }}
21
- )
22
- s=$?
23
- set -e +x
+ ) || s=$?
24
if [[ $s != 0 ]]; then status=$s; fi
25
popd > /dev/null
26
echo -e "\n\n"
0 commit comments