mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-04 18:51:17 +00:00
16 lines
308 B
YAML
16 lines
308 B
YAML
box: wercker/golang
|
|
|
|
build:
|
|
steps:
|
|
# Sets the go workspace and places you package
|
|
# at the right place in the workspace tree
|
|
- setup-go-workspace
|
|
|
|
# Test the project
|
|
- script:
|
|
name: go test
|
|
code: |
|
|
cd $WERCKER_SOURCE_DIR
|
|
go version
|
|
go test
|