chore: Add AppVeyor config

This commit is contained in:
tsuyoshiwada 2018-02-28 22:54:05 +09:00
parent 6e1bbeec22
commit f9ab379519

21
.appveyor.yml Normal file
View file

@ -0,0 +1,21 @@
version: "{build}"
clone_depth: 1
clone_folder: c:\gopath\src\github.com\git-chglog\git-chglog
environment:
GOPATH: c:\gopath
install:
- echo %PATH%
- echo %GOPATH%
- go version
- go env
- set PATH=%PATH%;%GOPATH%\bin
test_script:
- go build github.com/git-chglog/git-chglog/cmd/git-chglog
- for /f "" %%G in ('go list github.com/git-chglog/git-chglog/...') do ( go test -v %%G & IF ERRORLEVEL == 1 EXIT 1)
build: off
deploy: off