diff --git a/gitlab-ci.yml b/gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..04845acfabafd4a6ca3ba7f295b3a78e91d19340 --- /dev/null +++ b/gitlab-ci.yml @@ -0,0 +1,13 @@ +stages: + - test + +run-test: + stage: test + script: + - rm -rf civenv-plugins + - virtualenv -p python3 --system-site-packages civenv-plugins + - . ./civenv-plugins/bin/activate + - pip3 install -I pylint==2.4.4 + - python3 -m pylint gajim-plugins + - deactivate + - rm -rf civenv-plugins \ No newline at end of file