Update test GitHub Action to fail if gofmt makes changes.

This commit is contained in:
Patrick Fairbank
2022-11-11 08:59:11 -08:00
parent 349313c486
commit 5ee07ee33f

View File

@@ -15,4 +15,4 @@ jobs:
- name: Test - name: Test
run: go test ./... run: go test ./...
- name: Check formatting - name: Check formatting
run: go fmt ./... run: test -z "$(go fmt ./...)"