From d5c1f3f367f739937b8195457a54d9fa9e7c4e76 Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Sun, 30 May 2021 15:23:19 -0700 Subject: [PATCH] don't use gofmt as an example in the README gofmt doesn't care about Go modules, so that's a bad example. --- README.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 026cc09..9fa373f 100644 --- a/README.md +++ b/README.md @@ -13,9 +13,7 @@ Take the following example, running a command (or multiple commands) directly: ```yml steps: - name: Code Quality Checks - run: | - go vet ./... - gofmt . + run: go vet ./... ``` Using this action, this would run the same command(s) in all Go modules: @@ -25,7 +23,5 @@ steps: - name: Code Quality Checks uses: protocol/multiple-go-modules@master with: - run: | - go vet ./... - gofmt . + run: go vet ./... ```