aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 099d4d53e44c1711243e19c0d7acfbaa49807fdd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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