7a4eda156c
This also removes `godep` calls from make scripts. Of note is that currently `./...` checking in acceptance tests is disabled.
16 lines
243 B
YAML
16 lines
243 B
YAML
box: wercker/golang
|
|
build:
|
|
steps:
|
|
- setup-go-workspace
|
|
|
|
- script:
|
|
name: go get
|
|
code: |
|
|
go version
|
|
go get -t ./...
|
|
|
|
- script:
|
|
name: go test
|
|
code: |
|
|
go test -race ./...
|