Build & Lint #1663
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 * * * | |
env: | |
JAVA_VERSION: 12.x | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- flutter-channel: stable | |
# TODO: Re-enable when a beta after 3.22.0 is released | |
# - flutter-channel: beta | |
- flutter-version: 3.22.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 pub get | |
- run: flutter analyze | |
build-example: | |
name: Build example | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- flutter-channel: stable | |
# TODO: Re-enable when a beta after 3.22.0 is released | |
# - flutter-channel: beta | |
- flutter-version: 3.22.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 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 |