Downgrade upper bounds of device_info_plus, package_info_plus #659
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: | |
flutter-channel: [stable, beta] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: zulu | |
java-version: ${{ env.JAVA_VERSION }} | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: ${{ matrix.flutter-channel }} | |
- run: flutter pub get | |
- run: flutter analyze | |
build-example: | |
name: Build example | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
flutter-channel: [stable, beta] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: zulu | |
java-version: ${{ env.JAVA_VERSION }} | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: ${{ matrix.flutter-channel }} | |
- run: flutter pub get | |
working-directory: example | |
- run: flutter build apk | |
working-directory: example | |
- name: Upload APK as artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: example-apk | |
path: example/build/app/outputs/apk/release/app-release.apk |