docs: update README with migration details and performance comparison #9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Continuous Integration | |
| concurrency: | |
| group: $-$ | |
| cancel-in-progress: true | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - pre-release | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| analyze-and-test: | |
| uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/flutter_package.yml@v1 | |
| with: | |
| flutter_channel: stable | |
| min_coverage: 70 | |
| test-clients: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Git Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Flutter | |
| uses: subosito/flutter-action@v2 | |
| with: | |
| channel: stable | |
| cache: true | |
| - name: Install Dependencies | |
| run: flutter pub get | |
| - name: Run Integration Tests VM | |
| run: flutter test test/integration/eventflux_test_vm.dart | |
| - name: Run Integration Tests Browser | |
| run: flutter test test/browser --platform chrome |