From 845d09763a40514fc46398b06258970db5bd1580 Mon Sep 17 00:00:00 2001 From: Steve Francia Date: Wed, 15 Jan 2014 11:02:24 -0500 Subject: [PATCH] Create wercker.yml --- wercker.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 wercker.yml diff --git a/wercker.yml b/wercker.yml new file mode 100644 index 00000000..eea5c55e --- /dev/null +++ b/wercker.yml @@ -0,0 +1,28 @@ +box: wercker/golang +# 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 -t ./... + + # Build the project + - script: + name: go build + code: | + go build ./... + + # Test the project + - script: + name: go test + code: | + go test ./... -- 2.30.2