From ea0bf141c6c6b7f5c56edb8a47e2649c9c1246e9 Mon Sep 17 00:00:00 2001 From: andreykropotov Date: Fri, 5 Jun 2026 09:30:06 +0400 Subject: [PATCH] DEV-648: build example app in PR checks (plugin has no root lib/main.dart) --- .github/workflows/checks.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/checks.yaml b/.github/workflows/checks.yaml index 9af3e84..c9c43cb 100644 --- a/.github/workflows/checks.yaml +++ b/.github/workflows/checks.yaml @@ -52,5 +52,8 @@ jobs: - name: Check formatting run: dart format --output=none --set-exit-if-changed . + # This is a plugin package: the buildable app lives in example/, + # so build there (the repo root has no lib/main.dart). - name: Build (verify) + working-directory: example run: flutter build apk --debug