From 682c75649a86aa17add10af5dc7bbe980974ab21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Sat, 25 Jan 2025 19:58:11 +0100 Subject: [PATCH] ci: Add black CI test --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 63c0a69..6577e4d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -19,3 +19,15 @@ test-isort: - isort --version - isort --check . interruptible: true + +test-black: + image: gajim-test + stage: test + rules: + - changes: + - "**/*.py" + script: + - pip install black==24.10.0 + - black --version + - black . --check + interruptible: true