build(deps): bump build_runner from 2.4.13 to 2.4.14 in /example in the pub group across 1 directory #1785
Workflow file for this run
This file contains 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: Build & Lint | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
schedule: | |
- cron: 0 4 * * 1 | |
env: | |
JAVA_VERSION: 17 | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- flutter-channel: stable | |
- flutter-channel: beta | |
- flutter-version: 3.27.0 | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: zulu | |
java-version: ${{ env.JAVA_VERSION }} | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: ${{ matrix.flutter-channel }} | |
flutter-version: ${{ matrix.flutter-version }} | |
- run: flutter --version | |
- run: flutter pub get | |
- run: flutter analyze | |
build-example: | |
name: Build example | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- flutter-channel: stable | |
- flutter-channel: beta | |
- flutter-version: 3.27.0 | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: zulu | |
java-version: ${{ env.JAVA_VERSION }} | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: ${{ matrix.flutter-channel }} | |
flutter-version: ${{ matrix.flutter-version }} | |
- run: flutter --version | |
- run: flutter pub get | |
working-directory: example | |
- run: flutter build apk | |
working-directory: example | |
- name: Upload APK as artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: example-apk-flutter-${{ matrix.flutter-channel }} | |
path: example/build/app/outputs/apk/release/app-release.apk |