box: golang
build:
steps:
- setup-go-workspace
# Gets the dependencies
- script:
name: go get
code: |
go get
# Build the project
name: go build
go build ./...
# Test the project
name: go test
go test ./...