zooming feature #212
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 Tests | |
| on: | |
| push: | |
| branches: [ main, master, develop ] | |
| pull_request: | |
| branches: [ main, master, develop ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Setup Flutter | |
| uses: subosito/flutter-action@v2 | |
| with: | |
| flutter-version: '3.35.7' | |
| channel: 'stable' | |
| cache: true | |
| - name: Get dependencies | |
| run: flutter pub get | |
| - name: Verify the installation | |
| run: flutter doctor -v | |
| - name: Analyze project source | |
| run: flutter analyze | |
| - name: Check formatting | |
| run: dart format --output=none --set-exit-if-changed . | |
| - name: Run all tests | |
| run: flutter test | |
| - name: Check pub publish readiness | |
| run: flutter pub publish --dry-run | |
| - name: Check dependencies | |
| run: flutter pub deps |