Skip to content

Commit

Permalink
fix: gofmt doesn't take the ./... style arg
Browse files Browse the repository at this point in the history
  • Loading branch information
zjrgov committed Dec 18, 2024
1 parent 6f666d1 commit bbdf10e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cf-driver-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: go get .

- name: Check formatting
run: test -z $(gofmt -l ./...)
run: test -z $(gofmt -l .)

- name: Vet
run: go vet ./...
Expand Down
2 changes: 1 addition & 1 deletion runner/cf-driver-go/cg/cg.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package cg

type App struct {
Id string
Name string
Name string
State string
}

Expand Down

0 comments on commit bbdf10e

Please sign in to comment.