mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 13:09:22 -06:00
30 lines
508 B
YAML
30 lines
508 B
YAML
box: wercker/golang
|
|
|
|
steps:
|
|
- wercker/npm-install@0.9.3
|
|
|
|
build:
|
|
steps:
|
|
# Workspace
|
|
- setup-go-workspace
|
|
- 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 ./...
|
|
# npm install
|
|
- npm-install:
|
|
cwd: grafana/
|
|
|