mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-14 19:27:58 +08:00
864666f99d
Also remove the install script and move the "go version" command to before_test.
14 lines
395 B
YAML
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
|