mirror of
https://github.com/octoleo/restic.git
synced 2024-11-25 14:17:42 +00:00
Add integration tests for wercker
This commit is contained in:
parent
7d235a2be3
commit
9eb0aee05f
33
wercker.yml
33
wercker.yml
@ -1 +1,34 @@
|
|||||||
box: wercker/golang
|
box: wercker/golang
|
||||||
|
# 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 ./...
|
||||||
|
|
||||||
|
# run integration tests
|
||||||
|
- script:
|
||||||
|
name: integration test
|
||||||
|
code: |
|
||||||
|
make test
|
||||||
|
Loading…
Reference in New Issue
Block a user