1
0
mirror of https://github.com/amix/vimrc synced 2025-02-28 14:12:51 +08:00
amix-vimrc-mirror/sources_non_forked/vim-go/.travis.yml

23 lines
542 B
YAML
Raw Normal View History

2017-02-11 21:01:38 +08:00
language: go
2018-06-14 18:31:12 +08:00
go:
2019-11-16 23:28:42 +08: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 20:52:53 +08: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 20:52:53 +08:00
- |
if [ "$ENV" = "vimlint" ]; then
2019-11-16 23:28:42 +08:00
pip install vim-vint covimerage==0.1.6 codecov pathlib
2018-07-19 20:52:53 +08:00
else
2019-11-16 23:28:42 +08:00
pip install --user vim-vint covimerage==0.1.6 codecov pathlib
2018-07-19 20:52:53 +08:00
fi
script:
- ./scripts/$SCRIPT $VIM_VERSION