From 6570ad8a87951e5eac3a5b0909d0898493c17aaa Mon Sep 17 00:00:00 2001 From: robot Date: Sat, 1 Aug 2026 07:32:17 +0000 Subject: [PATCH] fix(ci): dart format has no --fix flag; use plain dart format MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit dart format always rewrites files — there is no --fix option. Renamed step to 'Auto-format source' to reflect what it does. --- .gitea/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index b7b5d02..78d8b7a 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -43,8 +43,8 @@ jobs: - name: Analyze Dart code run: flutter analyze --fatal-warnings - - name: Check formatting - run: dart format --fix lib/ test/ + - name: Auto-format source + run: dart format lib/ test/ # ── Stage 2: Unit & widget tests ─────────────────────────────────