mirror of
1
0
Fork 0
ultimate-vim/sources_non_forked/vim-go/.travis.yml

23 lines
542 B
YAML
Raw Normal View History

2017-02-11 08:01:38 -05:00
language: go
2018-06-14 06:31:12 -04:00
go:
2019-11-16 10:28:42 -05:00
- 1.13
notifications:
email: false
matrix:
include:
- env: SCRIPT="test -c" VIM_VERSION=vim-8.0
- env: SCRIPT="test -c" VIM_VERSION=nvim
2018-07-19 08:52:53 -04:00
- env: ENV=vimlint SCRIPT=lint VIM_VERSION=vim-8.0
language: python
python: 3.6
install:
- ./scripts/install-vim $VIM_VERSION
2018-07-19 08:52:53 -04:00
- |
if [ "$ENV" = "vimlint" ]; then
2019-11-16 10:28:42 -05:00
pip install vim-vint covimerage==0.1.6 codecov pathlib
2018-07-19 08:52:53 -04:00
else
2019-11-16 10:28:42 -05:00
pip install --user vim-vint covimerage==0.1.6 codecov pathlib
2018-07-19 08:52:53 -04:00
fi
script:
- ./scripts/$SCRIPT $VIM_VERSION