mirror of
https://github.com/sosedoff/pgweb.git
synced 2024-12-14 19:21:46 +03:00
22 lines
351 B
YAML
22 lines
351 B
YAML
clone_folder: c:\go\src\github.com\sosedoff\pgweb
|
|
|
|
services:
|
|
- postgresql
|
|
|
|
install:
|
|
- set PATH=%GOPATH%\bin;%PATH%
|
|
- echo %PATH%
|
|
- echo %GOPATH%
|
|
- cd %APPVEYOR_BUILD_FOLDER%
|
|
- go env
|
|
- go version
|
|
- go get github.com/golang/dep/cmd/dep
|
|
- dep ensure
|
|
|
|
build_script:
|
|
- go build
|
|
|
|
test_script:
|
|
- go test -race -cover ./...
|
|
|
|
deploy: off |