appveyor.yml
1version: "{build}"
2
3os: Windows Server 2016
4
5image: Visual Studio 2017
6
7clone_folder: c:\gopath\src\github.com\urfave\cli
8
9environment:
10 GOPATH: C:\gopath
11 GOVERSION: 1.8.x
12 PYTHON: C:\Python36-x64
13 PYTHON_VERSION: 3.6.x
14 PYTHON_ARCH: 64
15
16install:
17- set PATH=%GOPATH%\bin;C:\go\bin;%PATH%
18- go version
19- go env
20- go get github.com/urfave/gfmrun/...
21- go get -v -t ./...
22
23build_script:
24- python runtests vet
25- python runtests test
26- python runtests gfmrun