Fix compile error flutter 3.29 #12
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: Running CI for flutterbook | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
run-unit-tests: | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/flutter-action@v2 | |
- name: Get flutter packages | |
run: flutter pub get | |
- name: Run all tests | |
run: flutter test |