Skip to content

add pipeline build workflow #2

add pipeline build workflow

add pipeline build workflow #2

Workflow file for this run

name: onPush
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: 'stable'
- name: Install dependencies
run: flutter pub get
- name: Analyze code
run: flutter analyze
- name: Run tests
run: flutter test
- name: Build APK
working-directory: example
run: flutter build apk --release
- name: Build APK
working-directory: example
run: flutter build ios