Files
gajim-plugins/.gitlab-ci.yml
2025-01-25 19:35:32 +01:00

22 lines
294 B
YAML

image: plugins-master:latest
stages:
- test
- deploy
deploy-plugins:
stage: deploy
script:
- python3 .ci/deploy.py
test-isort:
image: gajim-test
stage: test
rules:
- changes:
- "**/*.py"
script:
- isort --version
- isort --check .
interruptible: true