summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorryanss2015-02-15 14:59:20 -0500
committerryanss2015-02-15 14:59:20 -0500
commit631a979480b24f03f5b7cfab49353da1cb2f4cb7 (patch)
tree5bcce23f8927a6e203c1207720a864f0aa7e741c /.travis.yml
parentb9c74e0aeafda06633cc6ea6bfa902070dcf8227 (diff)
downloadvim-hn-631a979480b24f03f5b7cfab49353da1cb2f4cb7.tar.gz
Add basic tests and Travis integration. Close #24
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..da1c718
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,15 @@
+# https://travis-ci.org/ryanss/vim-hackernews
+
+language: vim
+
+before_script:
+ - git clone https://github.com/junegunn/vader.vim.git
+
+script: |
+ vim -Nu <(cat << VIMRC
+ filetype off
+ set rtp+=vader.vim
+ set rtp+=.
+ filetype plugin indent on
+ syntax enable
+ VIMRC) -c 'Vader! tests.vader' > /dev/null