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