summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 6842e95e94c5185f51ed79759962a1386b42d5a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
sudo: false
dist: trusty

language: python

python:
    - 3.3
    - 3.4
    - 3.5

install:
    # Install Neovim via Gist
    # https://gist.github.com/lambdalisue/0f461f6a91743895394e63a9a1c65232
    - curl -sL https://gist.githubusercontent.com/lambdalisue/0f461f6a91743895394e63a9a1c65232/raw/install_nvim_for_ci.sh | bash
    - make install

script:
    - PATH="$HOME/neovim/bin:$PATH" make test
    - make lint