Skip to content

fix: onInitialization to wait for initialization to the complete and config received #273

fix: onInitialization to wait for initialization to the complete and config received

fix: onInitialization to wait for initialization to the complete and config received #273

Workflow file for this run

name: Flutter SDK Unit Tests
# Leverages the Flutter GH Action at https://github.com/marketplace/actions/flutter-action
on:
pull_request:
branches: [main]
jobs:
build:
name: Unit Test
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@v4
- name: Install and set Flutter version
uses: subosito/flutter-action@v2
with:
flutter-version: '3.x'
channel: 'stable'
- name: Install Flutter packages
run: flutter pub get
- name: Analyze
run: flutter analyze
- name: Run Unit Tests
run: flutter test
- name: Run Publish Dry Run
run: flutter pub publish --dry-run