Markdown Vim Mode
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
519 B

  1. language: vim
  2. env:
  3. - TEST=package
  4. - TEST=latest
  5. before_script: |
  6. cd ..
  7. if [ "$TEST" = "package" ]; then
  8. sudo apt-get -y update
  9. sudo apt-get -y install vim
  10. else
  11. git clone --depth 1 https://github.com/vim/vim
  12. cd vim
  13. ./configure --with-features=huge
  14. make
  15. sudo make install
  16. export PATH="/usr/local/bin:$PATH"
  17. cd -
  18. fi
  19. git clone https://github.com/godlygeek/tabular
  20. git clone https://github.com/junegunn/vader.vim
  21. script: |
  22. cd "$TRAVIS_BUILD_DIR"
  23. ./test/run-tests.sh