You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
388 B
YAML
15 lines
388 B
YAML
language: go
|
|
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
|
|
- env: SCRIPT=lint VIM_VERSION=vim-8.0
|
|
install:
|
|
- ./scripts/install-vim $VIM_VERSION
|
|
- pip install --user vim-vint covimerage codecov
|
|
script:
|
|
- ./scripts/$SCRIPT $VIM_VERSION
|