diff options
Diffstat (limited to 'vendor/github.com/jinzhu/inflection/wercker.yml')
| -rw-r--r-- | vendor/github.com/jinzhu/inflection/wercker.yml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/vendor/github.com/jinzhu/inflection/wercker.yml b/vendor/github.com/jinzhu/inflection/wercker.yml new file mode 100644 index 000000000..5e6ce981d --- /dev/null +++ b/vendor/github.com/jinzhu/inflection/wercker.yml @@ -0,0 +1,23 @@ +box: golang + +build: + steps: + - setup-go-workspace + + # Gets the dependencies + - script: + name: go get + code: | + go get + + # Build the project + - script: + name: go build + code: | + go build ./... + + # Test the project + - script: + name: go test + code: | + go test ./... |
