Rename .gitlab-ci.yml

This commit is contained in:
lovetox
2020-09-16 14:34:41 +02:00
parent afea4512df
commit 838651eba9

13
.gitlab-ci.yml Normal file
View File

@@ -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