github.com/elves/elvish@v0.15.0/.appveyor.yml (about)

     1  platform: x64
     2  clone_folder: c:\gopath\src\github.com\elves\elvish
     3  environment:
     4    GOPATH: c:\gopath
     5    ELVISH_TEST_TIME_SCALE: 10
     6  install:
     7    # The codecov uploader depends on a POSIX shell and commands such as `find`
     8    # so ensure the relevant Windows MSYS2 directory is in the external command
     9    # search path.
    10    - set PATH=C:\msys64\usr\bin;%PATH%
    11  build: off
    12  before_test:
    13    - go version
    14  test_script:
    15    - go test -coverprofile=cover -coverpkg=./pkg/... ./pkg/...
    16    - curl -s https://codecov.io/bash -o codecov && bash codecov -f cover || ver > nul