From cb4aa809e1da6e2645f99d051e8d2e470948eff5 Mon Sep 17 00:00:00 2001 From: Hugo Osvaldo Barrera Date: Sun, 23 Jun 2024 14:21:52 +0200 Subject: [PATCH] Check python formatting in CI (MR 2325) Fixes: https://gitlab.com/postmarketOS/pmbootstrap/-/issues/2324 --- .ci/ruff.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.ci/ruff.sh b/.ci/ruff.sh index f24c10af..306a0803 100755 --- a/.ci/ruff.sh +++ b/.ci/ruff.sh @@ -17,3 +17,6 @@ ruff check --ignore "F401" $(find . -not -path '*/venv/*' -name '__init__.py') # Check all other files ruff check --exclude=__init__.py . + +# Check formatting +ruff format --check