feat: Added Gridview Support #266
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: ci | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
semantic-pull-request: | |
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/semantic_pull_request.yml@v1 | |
spell-check: | |
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/spell_check.yml@v1 | |
with: | |
includes: "**/*.md" | |
modified_files_only: false | |
build: | |
strategy: | |
matrix: | |
flutter-version: | |
# The version of Flutter to use should use the minimum Dart SDK version supported by the package, | |
# refer to https://docs.flutter.dev/development/tools/sdk/releases. | |
- "3.24.0" | |
- "3.x" | |
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/flutter_package.yml@v1 | |
with: | |
flutter_channel: stable | |
flutter_version: ${{ matrix.flutter-version }} | |
package_get_excludes: example | |
runs_on: macos-latest | |
pana_score: | |
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/pana.yml@v1 |