You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
207 B
Bash
11 lines
207 B
Bash
6 months ago
|
#!/usr/bin/env bash
|
||
|
set -eo pipefail
|
||
|
IFS=$'\n\t'
|
||
|
|
||
|
if [ -n "$(gofmt -l .)" ]; then
|
||
|
echo "Failure! The following files need formatting with go fmt:"
|
||
|
gofmt -l .
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
echo "All go fmt checks passed!"
|