Skip to content

Add actions and tests #9

Add actions and tests

Add actions and tests #9

Workflow file for this run

name: Flutter Example
on:
workflow_dispatch:
push:
branches: [ main ]
paths:
- '.github/workflows/flutter-example.yml'
- 'example/**'
- '!example/README.md'
pull_request:
branches: [ main, 'v[0-9]+.[0-9]+' ]
paths:
- '.github/workflows/flutter-example.yml'
- 'example/**'
- '!example/README.md'
defaults:
run:
working-directory: example
jobs:
build-android:
name: Build Android demo
runs-on: ubuntu-latest
strategy:
matrix:
flutter-version: ['2.8.1', '3.0.4']
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
- name: Install Flutter ${{ matrix.flutter-version }}
uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.flutter-version }}
- name: Install dependencies
run: flutter pub get
- name: Build
run: flutter build apk
build-ios:
name: Build iOS demo
runs-on: macos-latest
strategy:
matrix:
flutter-version: ['2.8.1', '3.0.4']
steps:
- uses: actions/checkout@v3
- name: Install Flutter ${{ matrix.flutter-version }}
uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.flutter-version }}
architecture: x64
- name: Update Cocoapods repo
run: pod repo update
- name: Install dependencies
run: flutter pub get
- name: Build
run: flutter build ios --release --no-codesign