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
Similar to actions/setup-go#450, it would be nice to be able to specify go.mod (or any other path to a Go module) as an input to the go-version parameter. The benefit of this over go-version-file is that you can have a workflow with matrix testing using the version from go.mod as the lowest version and any newer versions. Basically, this makes it possible to write GitHub actions that are more or less maintenance free (the below example testing the lowest supported Go version and the latest stable):
Similar to actions/setup-go#450, it would be nice to be able to specify
go.mod
(or any other path to a Go module) as an input to thego-version
parameter. The benefit of this overgo-version-file
is that you can have a workflow with matrix testing using the version fromgo.mod
as the lowest version and any newer versions. Basically, this makes it possible to write GitHub actions that are more or less maintenance free (the below example testing the lowest supported Go version and the latest stable):The text was updated successfully, but these errors were encountered: