mirror of
https://github.com/flutter/holobooth.git
synced 2025-08-06 14:50:05 +08:00

<!-- Thanks for contributing! Provide a description of your changes below and a general summary in the title Please look at the following checklist to ensure that your PR can be accepted quickly: --> ## Description Changes: - Bump min dart SDK to 2.19.0 - Bump Flutter version to 3.7.12 - Used Very Good Analysis 4.0.0 - Corrected new analyzer issues - Dart format ## Type of Change <!--- Put an `x` in all the boxes that apply: --> - [ ] ✨ New feature (non-breaking change which adds functionality) - [ ] 🛠️ Bug fix (non-breaking change which fixes an issue) - [ ] ❌ Breaking change (fix or feature that would cause existing functionality to change) - [ ] 🧹 Code refactor - [ ] ✅ Build configuration change - [ ] 📝 Documentation - [X] 🗑️ Chore
23 lines
540 B
YAML
23 lines
540 B
YAML
name: convert_repository
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- "packages/convert_repository/**"
|
|
- ".github/workflows/convert_repository.yaml"
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/flutter_package.yml@v1
|
|
with:
|
|
flutter_channel: "stable"
|
|
flutter_version: 3.7.12
|
|
coverage_excludes: "**/*.gen.dart"
|
|
working_directory: packages/convert_repository
|