ci: Add black CI test

This commit is contained in:
Philipp Hörist
2025-01-25 19:58:11 +01:00
parent 82f77f6b8c
commit 682c75649a

View File

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