From 23c3da1dc8ceb4d8a412b360b7c3d6a5a0a503a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0t=C4=9Bp=C3=A1n=20Bal=C3=A1=C5=BEik?= Date: Tue, 10 Feb 2026 20:48:54 +0100 Subject: [PATCH] Add ruff job to CI Run the linter on Python code changes in CI. (cherry picked from commit 8b0a8dbd8e16652acfc1f72b05f3ada744aa47de) --- .gitlab-ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 95b87b0233..9506d636d9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -802,6 +802,12 @@ pylint: script: - pylint $(git ls-files '*.py') +ruff: + <<: *quick_checks_job + <<: *python_triggering_rules + script: + - ruff check + reuse: <<: *quick_checks_job image: