From 224986ab9639ee3f055f5a2d1c088d15a44ca5e9 Mon Sep 17 00:00:00 2001 From: David Beniamine Date: Wed, 23 Jan 2019 12:06:53 +0100 Subject: [PATCH] Add gitlab ci --- .gitlab-ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..d887a2b --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,20 @@ +stages: + -test + +test-vim-latest: + image: thinca/vim:v7.4 + script: + - cd tests + - bash runtests.sh + +test-vim-7.4: + image: thinca/vim:v7.4 + script: + - cd tests + - bash runtests.sh + +test-neovim: + image: lambdalisue/neovim-ci + script: + - cd tests + - bash runtests.sh