From: Bjørn Erik Pedersen Date: Thu, 27 Oct 2016 19:43:43 +0000 (+0200) Subject: Remove Wercker config X-Git-Tag: v0.18~157 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=f5b2645566cdc9d30a253c56fda09c689915e868;p=brevno-suite%2Fhugo Remove Wercker config Hopefully fixes --- diff --git a/wercker.yml b/wercker.yml deleted file mode 100644 index eea5c55e..00000000 --- a/wercker.yml +++ /dev/null @@ -1,28 +0,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 ./...