зеркало из https://github.com/Azure/spec-sla-bot.git
24 строки
381 B
YAML
24 строки
381 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.8.x
|
|
|
|
env:
|
|
- GO_ENV=test
|
|
|
|
services:
|
|
- postgresql
|
|
|
|
before_script:
|
|
- psql -c 'create database spec_sla_bot_test;' -U postgres
|
|
- mkdir -p $TRAVIS_BUILD_DIR/public/assets
|
|
|
|
go_import_path: github.com/Azure/spec_sla_bot
|
|
|
|
install:
|
|
- go get github.com/gobuffalo/buffalo/buffalo
|
|
- go get github.com/golang/dep/cmd/dep
|
|
- dep ensure
|
|
|
|
script: buffalo test
|