fix: updated close logic for isolates (#72) #57
Workflow file for this run
This file contains 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: Integration Tests macOS | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
e2e: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/flutter-action@main | |
with: | |
flutter-version: '3.x' | |
channel: 'stable' | |
- name: install deps | |
run: | | |
flutter config --enable-macos-desktop | |
flutter pub get | |
cd example/macos && pod install | |
- run: "cd example && flutter test --verbose --no-enable-impeller -d macos integration_test/app_test.dart" | |
- run: "cd example && flutter test --verbose test/app_test.dart" |