diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..5442cbf --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,14 @@ +lint:coding-guideline: + image: python:3-alpine + before_script: + - pip install pep8 + script: + - pep8 . + +test: + image: python:3-alpine + before_script: + - pip install neovim + - cd rplugin + script: + - python -m unittest test.test_neotags