Skip to content

ci: run vint on Vim source #139

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 6, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ jobs:
- name: Installed Vim with checks
env:
- VIM_VERSION=installed
- MAKE_TARGET="clean_compiled check checkpy js/test py/test test/node_position/test_position.out"
- MAKE_TARGET="clean_compiled check checkpy checkvim js/test py/test test/node_position/test_position.out"
- TEST_PROFILE=vim-profile-installed.txt
- TEST_PYTHON=python3

install:
- |
if [ "$VIM_VERSION" = 'installed' ]; then
pip install --user flake8
pip install -q --user flake8 git+https://github.com/Kuniwak/vint
else
bash scripts/install-vim.sh
export PATH=$HOME/vim/bin:$PATH
Expand Down
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ check: all
checkpy: all
flake8 py

checkvim: all
vint autoload

test:
test/run.sh

Expand Down