pgweb/appveyor.yml

27 lines
475 B
YAML
Raw Permalink Normal View History

2015-04-30 21:24:53 -05:00
clone_folder: c:\go\src\github.com\sosedoff\pgweb
environment:
2016-01-04 18:51:25 -06:00
GOPATH: c:\gopath
services:
- postgresql
install:
- set PATH=%GOPATH%\bin;%PATH%
2016-01-04 18:51:25 -06:00
- echo %PATH%
- echo %GOPATH%
- cd %APPVEYOR_BUILD_FOLDER%
- go env
- go version
- go get github.com/tools/godep
- godep get github.com/mitchellh/gox
- godep get github.com/jteeuwen/go-bindata/...
- godep restore
build_script:
- godep go build
test_script:
2015-05-19 15:19:12 -05:00
- godep go test -cover ./...
deploy: off