diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f9454d06..6446ee41 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -96,7 +96,7 @@ jobs: run: go mod verify - name: Run go fmt - run: make fmt + run: go run github.com/mh-cbon/go-fmt-fail ./... - name: Run tests run: go test -cover -covermode=atomic -timeout=5m -race ./... diff --git a/Makefile b/Makefile deleted file mode 100644 index 3a088caa..00000000 --- a/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -fmt: - go run github.com/mh-cbon/go-fmt-fail ./... - -.PHONY: fmt