fix: Revert "refactor: Install required Go tools in parallel to improve execution time."
What
fix: Revert "refactor: Install required Go tools in parallel to improve execution time."
Why
The single-line installation fails:
$ GOBIN=/usr/bin/ go install -v gotest.tools/gotestsum@latest github.com/boumenot/gocover-cobertura@latest || go get gotest.tools/gotestsum github.com/boumenot/gocover-cobertura
go: finding module for package github.com/boumenot/gocover-cobertura
package github.com/boumenot/gocover-cobertura provided by module github.com/boumenot/gocover-cobertura@v1.3.0
All packages must be provided by the same module (gotest.tools/gotestsum@v1.12.2).
According to go help install:
- All arguments must refer to packages in the same module at the same version.
This reverts commit d3665232.