Isolate refactor #12
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: Run Flutter Tests | |
on: | |
pull_request: | |
branches: | |
- main # Adjust the target branch as needed | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.24.0' | |
- name: Install dependencies | |
run: flutter pub get | |
- name: Run Core tests | |
run: flutter test test/core | |
- name: Run Native tests | |
run: flutter test test/native | |
- name: Run Web tests | |
run: flutter test test/web --platform chrome |