Skip to content

Commit

Permalink
fix: add tidy to make and run tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
gene-redpanda committed Mar 8, 2024
1 parent 6c54106 commit dff67f2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ test: unit_tests integration_tests

lint: install_gofumpt install_lint linter

ready: proto doc lint tidy

tidy:
@echo "running go mod tidy..."
@$(GOCMD) mod tidy

buf_deps:
@echo "installing dependencies..."
@$(GOCMD) install github.com/bufbuild/buf/cmd/buf@latest
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ go 1.21.3
require (
buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go v1.32.0-20231115204500-e097f827e652.1
github.com/davecgh/go-spew v1.1.1
github.com/golang/mock v1.6.0
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.1
github.com/hashicorp/terraform-plugin-docs v0.18.0
Expand Down Expand Up @@ -32,7 +33,6 @@ require (
github.com/bgentry/speakeasy v0.1.0 // indirect
github.com/cloudflare/circl v1.3.7 // indirect
github.com/fatih/color v1.16.0 // indirect
github.com/golang/mock v1.6.0 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/uuid v1.4.0 // indirect
Expand Down

0 comments on commit dff67f2

Please sign in to comment.