Skip to content

Add PR title GH action #139

Add PR title GH action

Add PR title GH action #139

Workflow file for this run

name: examples
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
example_android:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v1
with:
java-version: 17
- uses: subosito/flutter-action@v2
with:
channel: "stable"
- name: build
run: |
cd example && flutter build apk --debug
example_ios:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: "stable"
- name: build
run: |
cd example && flutter build ios --debug --no-codesign