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

24 lines
578 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-03-27 11:08:56 -04:00
- 1.12.1
notifications:
email: false
matrix:
include:
- env: SCRIPT="test -c" VIM_VERSION=vim-7.4
- 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
pip install vim-vint covimerage codecov pathlib
else
pip install --user vim-vint covimerage codecov pathlib
fi
script:
- ./scripts/$SCRIPT $VIM_VERSION