pgweb/appveyor.yml

26 lines
400 B
YAML
Raw Normal View History

2018-09-01 06:24:36 +03:00
clone_folder: c:\gopath\src\github.com\sosedoff\pgweb
environment:
GOPATH: c:\gopath
2018-09-01 06:30:59 +03:00
CGO_ENABLED: 0
2015-05-01 05:24:53 +03:00
services:
- postgresql
install:
- set PATH=%GOPATH%\bin;%PATH%
2016-01-05 03:51:25 +03:00
- echo %PATH%
- echo %GOPATH%
- cd %APPVEYOR_BUILD_FOLDER%
- go env
- go version
2018-09-01 06:13:01 +03:00
- go get github.com/golang/dep/cmd/dep
2018-09-01 06:11:54 +03:00
- dep ensure
build_script:
2018-09-01 06:11:54 +03:00
- go build
test_script:
2018-09-01 06:37:24 +03:00
- go test -cover ./...
deploy: off