elvish/.appveyor.yml
Qi Xiao 864666f99d .appveyor.yml: Add a dummy build command.
Also remove the install script and move the "go version" command to before_test.
2020-04-05 22:25:03 +01:00

14 lines
395 B
YAML

platform: x64
clone_folder: c:\gopath\src\github.com\elves\elvish
environment:
GOPATH: c:\gopath
ELVISH_TEST_TIME_SCALE: 10
install:
- set PATH=%GOPATH%\bin;c:\go\bin;C:\msys64\usr\bin;%PATH%
- go version
build_script:
- echo no build phase
test_script:
- go test -coverprofile=coverage -covermode=set ./...
- curl -s https://codecov.io/bash -o codecov && bash codecov -f coverage