@@ -0,0 +1,19 @@
+version: '{branch}.{build}'
+branches:
+ only:
+ - master
+clone_folder: c:\gopath\src\gopkg.in\inf.v0
+environment:
+ GOPATH: c:\gopath
+install:
+- set Path=c:\go\bin;%Path%
+- echo %Path%
+- go version
+- go env
+build_script:
+- cd %APPVEYOR_BUILD_FOLDER%
+- go get -v -t ./...
+- go build -v ./...
+test_script:
+- go test -v ./...
@@ -4,6 +4,8 @@ test: &test
working_directory: /go/src/gopkg.in/inf.v0
steps:
- checkout
+ - run: go version
+ - run: go env
- run: go get -v -t ./...
- run: go test -v ./...