From a91e35bb0b3b3b6c0f9c65697055061af88eee3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Ku=C3=9Fowski?= Date: Fri, 27 Feb 2026 18:32:47 +0100 Subject: [PATCH] chore: Check if pubspec.lock is up to date in CI --- .github/workflows/integrate.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index f852c9765..e3172f769 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -17,6 +17,8 @@ jobs: flutter-version: ${{ env.FLUTTER_VERSION }} cache: true - run: flutter pub get + - name: Check if pubspec.lock is up to date + run: git diff --exit-code pubspec.lock - run: flutter gen-l10n - name: Check formatting run: dart format lib/ test/ --set-exit-if-changed