Create wercker.yml
authorSteve Francia <steve.francia@gmail.com>
Wed, 15 Jan 2014 16:02:24 +0000 (11:02 -0500)
committerSteve Francia <steve.francia@gmail.com>
Wed, 15 Jan 2014 16:02:24 +0000 (11:02 -0500)
wercker.yml [new file with mode: 0644]

diff --git a/wercker.yml b/wercker.yml
new file mode 100644 (file)
index 0000000..eea5c55
--- /dev/null
@@ -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 ./...