From aff2532d0f1f1d359a203d545a27772deea1a774 Mon Sep 17 00:00:00 2001 From: Raghunandhan V Date: Wed, 30 Apr 2025 13:20:10 +0530 Subject: [PATCH] fix: PICAF-5619: Adding Build checks --- .github/workflows/build.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c51f62a..a0e44e3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,6 +21,20 @@ jobs: ref: ${{ github.event.pull_request.head.ref }} fetch-depth: ${{ github.event.pull_request.commits }} + - name: Set up Flutter + uses: subosito/flutter-action@v2 + with: + flutter-version: '3.13.0' + + - name: Install dependencies + run: flutter pub get + + - name: Analyze Code + run: flutter analyze + + - name: Build Flutter App (APK) + run: flutter build apk + dry-run: runs-on: ubuntu-latest name: Flutter Pub Publish --dry-run