aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorxentac2017-03-17 23:13:58 -0700
committerGitHub2017-03-17 23:13:58 -0700
commit4c19b4957ab7931fc2467b225b7a61b1215c6581 (patch)
treeed86a0ff517c69c44586e251b46c17ba9e4a3406 /.travis.yml
parent548424b59ac5902a07d53a2c984baeb3983c28ca (diff)
parent83ee9691e8e0e847af357d29b797c2773ed63b23 (diff)
downloadvim-beancount-4c19b4957ab7931fc2467b225b7a61b1215c6581.tar.gz
Merge pull request #40 from yagebu/test
Tests; setup travis
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..099d4d5
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,15 @@
+matrix:
+ include:
+ - env: TEST_ENV=lint
+ language: python
+ before_script: pip install vim-vint
+ script: vint -s .
+ - env: TEST_ENV=test
+ language: viml
+ before_script: git clone https://github.com/junegunn/vader.vim.git
+ script: |
+ vim -Nu <(cat << VIMRC
+ set rtp+=vader.vim
+ set rtp+=.
+ filetype plugin indent on
+ VIMRC) -c 'Vader! test/*' > /dev/null