You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to having different go.mod files within our repository, we would often times find situations where we would have to run go mod tidy for each go.mod existing throughout our repository. These annoying steps can be removed when we create a command that would iteratively run go mod tidy for all the go.mod existing in our repo.
Suggested Design
This can work similarly to how make update-sdk-version works: iteratively define the places we have different go.mods, and run go.mod for each of the go mods.
Acceptance Criteria
Make command for running go mod tidy for all go.mod in repo has been made and tested.
The text was updated successfully, but these errors were encountered:
Background
Due to having different go.mod files within our repository, we would often times find situations where we would have to run go mod tidy for each go.mod existing throughout our repository. These annoying steps can be removed when we create a command that would iteratively run go mod tidy for all the go.mod existing in our repo.
Suggested Design
This can work similarly to how
make update-sdk-version
works: iteratively define the places we have different go.mods, and run go.mod for each of the go mods.Acceptance Criteria
The text was updated successfully, but these errors were encountered: