remove go.work and binaries from source control#305
Merged
carlydf merged 1 commit intotemporalio:mainfrom Apr 27, 2026
Merged
Conversation
e3d7dc9 to
a73d5e5
Compare
There were two binary files in the source code repository. Removed them from source control and added them to .gitignore. Removes the go.work and go.work.sum files as well, since it's best practice to not have those in source control. Finally, moved the go-vet Github Action step from the `test-integration` workflow into the `linters` workflow since `go vet` is a linter. Standardized the linter steps to always cache the setup-go Github Action results. Issue temporalio#302 Issue temporalio#303 Signed-off-by: Jay Pipes <jay.pipes@temporal.io>
a73d5e5 to
fa4e883
Compare
carlydf
approved these changes
Apr 27, 2026
Shivs11
reviewed
Apr 27, 2026
Shivs11
approved these changes
Apr 27, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
There were two binary files in the source code repository. Removed them from source control and added them to .gitignore. Removes the go.work and go.work.sum files as well, since it's best practice to not have those in source control. Finally, moved the go-vet Github Action step from the
test-integrationworkflow into thelintersworkflow sincego vetis a linter. Standardized the linter steps to always cache the setup-go Github Action results.Issue #302
Issue #303