ref: f5b2645566cdc9d30a253c56fda09c689915e868
parent: 301e4c7e78edabc4763cbf992624ad70ec4555b6
author: Bjørn Erik Pedersen <[email protected]>
date: Thu Oct 27 17:43:43 EDT 2016
Remove Wercker config Hopefully fixes
--- a/wercker.yml
+++ /dev/null
@@ -1,28 +1,0 @@
-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 ./...