github.com/BrandonManuel/git-chglog@v0.0.0-20200903004639-7a62fa08787a/.appveyor.yml (about)

     1  version: "{build}"
     2  
     3  clone_depth: 1
     4  clone_folder: c:\gopath\src\github.com\git-chglog\git-chglog
     5  
     6  environment:
     7    GOPATH: c:\gopath
     8  
     9  install:
    10    - echo %PATH%
    11    - echo %GOPATH%
    12    - go version
    13    - go env
    14    - set PATH=%PATH%;%GOPATH%\bin
    15  
    16  test_script:
    17    - go build github.com/BrandonManuel/git-chglog/cmd/git-chglog
    18    - for /f "" %%G in ('go list github.com/BrandonManuel/git-chglog/...') do ( go test -v %%G & IF ERRORLEVEL == 1 EXIT 1)
    19  
    20  build: off
    21  deploy: off