ci: nicer format check workflow
Signed-off-by: oppiliappan <me@oppi.li>
oppi.li 4 months ago ea559909 7410cf45
··· 14 14 15 15 - name: "go fmt" 16 16 command: | 17 17 - gofmt -l . 17 17 + unformatted=$(gofmt -l .) 18 18 + test -z "$unformatted" || (echo "$unformatted" && exit 1) 18 19