Add gofmt formatting check to CI

pull/333/head
Michael Fridman 2022-04-14 22:15:17 -04:00
parent 8f53c35cc4
commit b7c7a8dc0f
No known key found for this signature in database
GPG Key ID: CAA64FDEEFD7FE0B
1 changed files with 7 additions and 0 deletions

View File

@ -25,6 +25,13 @@ jobs:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v3
- name: Check Go code formatting
run: |
if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then
gofmt -s -l .
echo "Please format Go code by running: go fmt ./..."
exit 1
fi
- name: Run tests
run: |
mkdir -p bin