chore(deps): bump com.android.application from 8.12.0 to 8.13.1 in /maplibre_gl_example/android #1992
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 CI | |
| on: [push, pull_request, workflow_dispatch] | |
| # Ensure that new pushes/updates cancel running jobs | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| format: | |
| name: "Check formatting" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: stable | |
| cache: true | |
| - uses: bluefireteam/melos-action@v3 | |
| with: | |
| run-bootstrap: true | |
| - name: Lint analysis | |
| run: melos run format-all | |
| lint: | |
| name: "Static code analysis" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: stable | |
| cache: true | |
| - uses: bluefireteam/melos-action@v3 | |
| with: | |
| run-bootstrap: true | |
| - name: Lint analysis | |
| run: melos run analyze-all | |
| test: | |
| name: "Run tests" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: stable | |
| cache: true | |
| - uses: bluefireteam/melos-action@v3 | |
| with: | |
| run-bootstrap: true | |
| - run: melos run test:io | |
| test-web: | |
| name: "Run web tests" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: stable | |
| cache: true | |
| - uses: bluefireteam/melos-action@v3 | |
| with: | |
| run-bootstrap: true | |
| - run: melos run test:web | |
| code-gen: | |
| name: "Generate code from templates" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: stable | |
| cache: true | |
| - uses: bluefireteam/melos-action@v3 | |
| with: | |
| run-bootstrap: true | |
| - run: melos run generate | |
| - run: melos run format-all | |
| - name: Check Git changes | |
| uses: multani/git-changes-action@v1 | |
| build-android: | |
| name: "Build Android apk" | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: maplibre_gl_example | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: stable | |
| cache: true | |
| - uses: bluefireteam/melos-action@v3 | |
| with: | |
| run-bootstrap: true | |
| - uses: actions/setup-java@v5 | |
| with: | |
| java-version: '21' | |
| distribution: 'temurin' | |
| cache: 'gradle' | |
| - name: Build example APK | |
| run: flutter build apk | |
| - name: Upload apk as artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: maplibre-flutter-demo.apk | |
| path: maplibre_gl_example/build/app/outputs/flutter-apk/app-release.apk | |
| build-iOS: | |
| name: Build iOS package | |
| runs-on: macos-latest | |
| defaults: | |
| run: | |
| working-directory: maplibre_gl_example | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: stable | |
| cache: true | |
| - uses: bluefireteam/melos-action@v3 | |
| with: | |
| run-bootstrap: true | |
| - uses: maxim-lobanov/setup-cocoapods@v1 | |
| with: | |
| podfile-path: maplibre_gl_example/ios/Podfile.lock | |
| - name: Build iOS package | |
| run: flutter build ios --simulator | |
| - name: Upload Runner.app as artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: maplibre-flutter-demo.app | |
| path: maplibre_gl_example/build/ios/iphonesimulator | |
| build-web: | |
| name: "Build web" | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: maplibre_gl_example | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: stable | |
| cache: true | |
| - uses: bluefireteam/melos-action@v3 | |
| with: | |
| run-bootstrap: true | |
| - name: Build web | |
| run: flutter build web |