appveyor.yml raw

   1  version: "build-{branch}-{build}"
   2  image: Visual Studio 2015
   3  clone_folder: c:\gopath\src\github.com\hashicorp\hcl
   4  environment:
   5    GOPATH: c:\gopath
   6  init:
   7    - git config --global core.autocrlf false
   8  install:
   9  - cmd: >-
  10      echo %Path%
  11  
  12      go version
  13  
  14      go env
  15  
  16      go get -t ./...
  17  
  18  build_script:
  19  - cmd: go test -v ./...
  20