From 82f77f6b8c97138b0bf060b598b864ffe54d34ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Sat, 25 Jan 2025 19:34:47 +0100 Subject: [PATCH] ci: Add isort CI test --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d6670e0..63c0a69 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,9 +1,21 @@ 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