github actions: experiment with workflow error commands
This commit is contained in:
parent
b06e86edc2
commit
c09c90d0a9
|
@ -6,6 +6,10 @@ fmt_list="$(gofmt -l "$@")"
|
|||
|
||||
if [ -n "$fmt_list" ]; then
|
||||
echo "Check gofmt failed: " >&2
|
||||
echo "${fmt_list}" | sed -e 's/^/\t/' >&2
|
||||
|
||||
for file in "$fmt_list"; do
|
||||
echo "::error file=${file},title=gofmt::gofmt check failed"
|
||||
echo "\t$file" >&2
|
||||
done
|
||||
exit 1
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue