mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
Create wercker.yml
This commit is contained in:
parent
f8243624e4
commit
845d09763a
1 changed files with 28 additions and 0 deletions
28
wercker.yml
Normal file
28
wercker.yml
Normal file
|
@ -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 ./...
|
Loading…
Reference in a new issue