File: .travis.yml

package info (click to toggle)
vim-puppet 4~20181115%2Bgit4793b074-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 164 kB
  • sloc: sh: 28; makefile: 2
file content (23 lines) | stat: -rwxr-xr-x 453 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
language: vim

matrix:
  include:
    # travis build-in vim version, 7.x
    - env: TESTVIM=vim
    # nightly build neovim version
    - env: TESTVIM=nvim

install:
  - |
    set -e
    pushd /tmp
    if [ "$TESTVIM" = nvim ]; then
      eval "$(curl -Ss https://raw.githubusercontent.com/neovim/bot-ci/master/scripts/travis-setup.sh) nightly-x64"
      gem install neovim
      pip install --user neovim
    fi
    popd

script:
  - test/run-tests.sh