Added script to remove unnecessary scripts after template setup #54
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: Strip boilerplate project | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
check_strip_boilerplate_project: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/[email protected] | |
with: | |
channel: 'stable' | |
- run: flutter packages get | |
- run: ./tool/install_fvm.sh | |
- run: printf 'yes\n' | fvm flutter pub run ./tool/dart_tool/strip_boilerplate_project.dart | |
- run: fvm flutter analyze | |
- run: fvm flutter test --update-goldens test/screen/home/home_screen_test.dart | |
- run: fvm flutter test |