Add Travis CI support
This commit is contained in:
parent
4b38f10f3f
commit
62512237a5
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,6 +1,7 @@
|
||||||
*
|
*
|
||||||
|
|
||||||
!.gitignore
|
!.gitignore
|
||||||
|
!.travis.yml
|
||||||
!CONTRIBUTING.md
|
!CONTRIBUTING.md
|
||||||
!LICENSE
|
!LICENSE
|
||||||
!README.md
|
!README.md
|
||||||
|
|
14
.travis.yml
Normal file
14
.travis.yml
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
language: vim
|
||||||
|
|
||||||
|
before_script: |
|
||||||
|
git clone https://github.com/junegunn/vader.vim.git
|
||||||
|
|
||||||
|
script: |
|
||||||
|
vim --nofork -XNu <(cat << EOF
|
||||||
|
filetype off
|
||||||
|
set runtimepath+=vader.vim
|
||||||
|
set runtimepath+=.
|
||||||
|
filetype plugin on
|
||||||
|
syntax enable
|
||||||
|
set hidden
|
||||||
|
EOF) -c 'Vader! test/*' >/dev/null
|
Loading…
Reference in a new issue