fix(edit_meal): prevent keyboard drop; scope rebuilds; correct unit suffix; safe conversions & controller disposal #266
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Default Workflow | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| pull_request: | |
| branches: | |
| - main | |
| - develop | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - uses: actions/setup-java@v2 | |
| with: | |
| distribution: 'zulu' | |
| java-version: '11' | |
| - name: Setup Flutter | |
| uses: subosito/flutter-action@v2 | |
| with: | |
| flutter-version: '3.27.1' | |
| channel: 'stable' | |
| cache: true | |
| - name: Setup Just | |
| uses: taiki-e/install-action@just | |
| - name: Cache Flutter packages | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.pub-cache | |
| key: ${{ runner.os }}-pub-cache-${{ hashFiles('**/pubspec.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-pub-cache- | |
| # - name: Run CI | |
| # run: just ci | |
| # env: | |
| # FDC_API_KEY: ${{ secrets.FDC_API_KEY }} | |
| # SENTRY_DNS: ${{ secrets.SENTRY_DNS }} | |
| # SUPABASE_PROJECT_ANON_KEY: ${{ secrets.SUPABASE_PROJECT_ANON_KEY }} | |
| # SUPABASE_PROJECT_URL: ${{ secrets.SUPABASE_PROJECT_URL }} |