mirror of
https://github.com/strongdm/comply
synced 2024-11-05 07:25:26 +00:00
36 lines
892 B
YAML
36 lines
892 B
YAML
box: yosssi/golang-latest@1.0.7
|
|
# 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 -cover ./...
|
|
# Invoke goveralls
|
|
- script:
|
|
name: goveralls
|
|
code: |
|
|
go get github.com/mattn/goveralls
|
|
go test -v -covermode=count -coverprofile=coverage.out
|
|
goveralls -coverprofile=coverage.out -service=wercker.com -repotoken $COVERALLS_REPO_TOKEN
|