pgweb/appveyor.yml
2018-08-31 22:11:54 -05:00

24 lines
344 B
YAML

clone_folder: c:\go\src\github.com\sosedoff\pgweb
environment:
GOPATH: c:\gopath
services:
- postgresql
install:
- set PATH=%GOPATH%\bin;%PATH%
- echo %PATH%
- echo %GOPATH%
- cd %APPVEYOR_BUILD_FOLDER%
- go env
- go version
- dep ensure
build_script:
- go build
test_script:
- go test -race -cover ./...
deploy: off