Using a makefile with your Go project
By default, Shippable detects your project type, and uses the language’s standard means of installing dependencies and building your project. In Go for example, dependencies are typically obtained via the ‘go get’ command, and the project is built with the ‘go build’ command. Specifically, we use this command for your go projects.
shippable_retry go get -d -v ./... && go build -v ./...