Skip to content

Instantly share code, notes, and snippets.

@olebedev
Forked from mies/wercker.yml
Created October 14, 2015 17:27
Show Gist options
  • Save olebedev/a6a755672361ad23f4b4 to your computer and use it in GitHub Desktop.
Save olebedev/a6a755672361ad23f4b4 to your computer and use it in GitHub Desktop.
default golang wercker.yml
box: wercker/golang
# Add services here
# Build definition
build:
# The steps that will be executed on build
steps:
# Sets the go workspace and places you package
# at the right place in the workspace tree
- setup-go-workspace
# Gets the dependencies
- script:
name: go get
code: |
cd $WERCKER_SOURCE_DIR
go version
go get ./...
# Build the project
- script:
name: go build
code: |
go build ./...
# Test the project
- script:
name: go test
code: |
go test ./...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment