-
Notifications
You must be signed in to change notification settings - Fork 2
/
wercker.yml
43 lines (37 loc) · 1009 Bytes
/
wercker.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
box: wercker/golang
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 github.com/tools/godep
export PATH=$WERCKER_SOURCE_DIR/bin:$PATH
# Test the project
- script:
name: go test
code: |
godep go test ./...
# Test coverage for the project
- script:
name: go test cover
code: |
./testCoverage ./... 50
- script:
name: coveralls upload
code: |
go get github.com/axw/gocov/gocov
go get github.com/mattn/goveralls
GIT_BRANCH=$WERCKER_GIT_BRANCH
./coverage --coveralls
# Test if the project builds
- script:
name: go build
code: |
godep go build ./...