feat(test): add very_good.yaml for config #3085
Workflow file for this run
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: very_good_cli | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - ".github/workflows/very_good_cli.yaml" | |
| - "bin/**" | |
| - "bricks/**" | |
| - "lib/**" | |
| - "test/**" | |
| - "pubspec.yaml" | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - ".github/workflows/very_good_cli.yaml" | |
| - "bin/**" | |
| - "bricks/**" | |
| - "lib/**" | |
| - "test/**" | |
| - "pubspec.yaml" | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/flutter_package.yml@v1 | |
| with: | |
| runs_on: ${{ matrix.os }} | |
| flutter_version: "3.44.x" | |
| coverage_excludes: "**/*.{gen,g}.dart" | |
| concurrency: 1 | |
| run_skipped: true | |
| run_bloc_lint: false | |
| # The CLI's own test suite is run directly rather than through the test optimizer, | |
| # matching the CI behavior prior to adopting this shared workflow. | |
| test_optimization: false | |
| pana: | |
| uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/pana.yml@v1 | |
| with: | |
| pana_version: 0.22.22 |