From 5dc4d680ec32c8a5d150668cbbe1e1e78ec70b0b Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 01:45:48 +0000 Subject: [PATCH] fix: simplify CI workflow - remove black, use ruff from dev deps --- app/.gitea/workflows/ci.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/app/.gitea/workflows/ci.yml b/app/.gitea/workflows/ci.yml index c7ee091..f824bd5 100644 --- a/app/.gitea/workflows/ci.yml +++ b/app/.gitea/workflows/ci.yml @@ -32,10 +32,7 @@ jobs: mypy env_pro/ --ignore-missing-imports || true - name: Check code formatting - run: | - pip install black ruff - black --check env_pro/ || true - ruff check env_pro/ || true + run: ruff check env_pro/ build: runs-on: ubuntu-latest