Description
As Task is written in Go, it can be installed in a Go module as a tool since Go 1.24:
$ go get github.com/go-task/task/v3/cmd/task@latest
Then that specific version locked in the go.mod can be called via go tool task:
In the installation manual this specific install method for Go module should be documented. In particular, this should be the privileged way to install and use Task in CI for Go projects.
Description
As Task is written in Go, it can be installed in a Go module as a tool since Go 1.24:
$ go get github.com/go-task/task/v3/cmd/task@latestThen that specific version locked in the go.mod can be called via
go tool task:$ go tool task --listIn the installation manual this specific install method for Go module should be documented. In particular, this should be the privileged way to install and use
Taskin CI for Go projects.