diff options
author | w0rp <devw0rp@gmail.com> | 2018-07-01 12:07:54 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2018-07-01 12:07:54 +0100 |
commit | 26aa0cf35842c1cdcf6a57d3406fe2e8afff1bb9 (patch) | |
tree | 773f7c45ca269f55fac24b671c8403303e67e6a8 /.travis.yml | |
parent | 3c5b6d1825144e3d955787613f3df9769e383091 (diff) | |
download | ale-26aa0cf35842c1cdcf6a57d3406fe2e8afff1bb9.zip |
Try splitting up the build into separate jobs
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index f5389f74..cc9d6269 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,5 +3,8 @@ sudo: required services: - docker language: generic -script: | - ./run-tests +script: + - "./run-tests --vim-only" + - "./run-tests --neovim-02-only" + - "./run-tests --neovim-03-only" + - "./run-tests --linters-only" |