-
Notifications
You must be signed in to change notification settings - Fork 118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: match the golang version in go.mod #493
fix: match the golang version in go.mod #493
Conversation
Thanks for making a pull request! 😃 |
Codecov Report
@@ Coverage Diff @@
## main #493 +/- ##
=======================================
Coverage 23.99% 23.99%
=======================================
Files 69 69
Lines 4697 4697
=======================================
Hits 1127 1127
Misses 3443 3443
Partials 127 127 Continue to review full report at Codecov.
|
We should rather try to change the |
166a09c
to
637c6ce
Compare
go.mod
Outdated
@@ -37,6 +37,7 @@ require ( | |||
github.com/xrash/smetrics v0.0.0-20200730060457-89a2a8a1fb0b | |||
go.starlark.net v0.0.0-20210223155950-e043a3d3c984 | |||
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2 | |||
golang.org/x/mod v0.3.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this change required for usage as script? Is there no way to avoid build/dev dependencies from prod dependencies?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The golang extension package mod
is used to parse the go.mod
file and get the configured Go version.
Golang doesn't have dev and prod dependencies, see:
golang/go#27653
golang/go#25922
Signed-off-by: Harikrishnan Balagopal <harikrishmenon@gmail.com>
637c6ce
to
23b24a1
Compare
Signed-off-by: Harikrishnan Balagopal harikrishmenon@gmail.com