fix: MenuFlyout TypeError on findRenderObject in sub-item hover handl… #1429
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: Flutter Analysis | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| package-analysis: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Install Flutter | |
| uses: subosito/flutter-action@main | |
| with: | |
| channel: stable | |
| - name: Install dependencies | |
| run: flutter pub get | |
| - name: Check formatting (excluding lib/l10n) | |
| continue-on-error: true | |
| run: | | |
| dart format --set-exit-if-changed lib/src test/ | |
| - name: Run analysis | |
| continue-on-error: true | |
| run: flutter analyze | |
| - name: Verify package health | |
| continue-on-error: true | |
| run: flutter pub publish --dry-run | |
| - name: Run tests | |
| run: flutter test |