Merge pull request #379 from HannesVDB/feature/gradle-upgrade #128
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: Strip boilerplate project remove tests | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| jobs: | |
| check_strip_boilerplate_project_remove_tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: subosito/flutter-action@v2.8.0 | |
| with: | |
| channel: 'stable' | |
| - run: ./tool/install_fvm.sh | |
| - run: fvm flutter packages get | |
| - run: printf 'no\n' | fvm flutter pub run ./tool/setup/dart/strip_boilerplate_project.dart | |
| - run: fvm flutter analyze |