# This file configures AppVeyor (http://www.appveyor.com), # a Windows-based CI service similar to Travis. # Identifier for this run version: "{build}" # Clone the repo into this path, which conforms to the standard # Go workspace structure. clone_folder: c:\gopath\src\cloud.google.com\go environment: GOPATH: c:\gopath install: # Info for debugging. - echo %PATH% - go version - go env - go get -v -d -t ./... # Provide a build script, or AppVeyor will call msbuild. build_script: - go install -v ./... test_script: - go test -short -v ./...