Skip to content

Commit 9a6e212

Browse files
committed
Adding Windows testing via appveyor
1 parent 87fca6b commit 9a6e212

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

appveyor.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
2+
version: build-{build}.{branch}
3+
4+
clone_folder: C:\gopath\src\github.com\Masterminds\vcs
5+
shallow_clone: true
6+
7+
environment:
8+
GOPATH: C:\gopath
9+
10+
platform:
11+
- x64
12+
13+
install:
14+
- go version
15+
- go env
16+
- choco install -y bzr
17+
- set PATH=C:\Program Files (x86)\Bazaar;%PATH%
18+
- bzr --version
19+
20+
build_script:
21+
- go install -v ./...
22+
23+
test_script:
24+
- go test -v
25+
26+
deploy: off

0 commit comments

Comments
 (0)