A mostly self-contained dev environment for Go.
brew install --cask docker
brew install go-task/tap/go-task
To run the build:
task build
# Specify a platform like windows/amd64
task build PLATFORM=windows/amd64
You can then run the binary:
./bin/example "what smells like blue?"
To run the linter:
task lint
To run the unit tests:
task unit-test