Skip to content

feat: add Flutter CI workflow #1

feat: add Flutter CI workflow

feat: add Flutter CI workflow #1

Workflow file for this run

name: Android CI
on:
push:
branches: [dev, main]
pull_request:
branches: [dev, main]
jobs:
build:
name: App Android-build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
- name: Flutter clean
run: flutter clean
- name: Flutter pub get
run: flutter pub get
- name: Build Android
run: flutter build apk --debug