Skip to content

test

test #6

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:
channel: any
flutter-version-file: pubspec.yaml
- 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