This repository has been archived by the owner on Nov 14, 2024. It is now read-only.
Fix the issue that the test failed #4
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: flutter_packager | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
paths: | |
- ".github/workflows/flutter_packager.yaml" | |
- "lib/**" | |
- "test/**" | |
- "pubspec.yaml" | |
push: | |
branches: | |
- main | |
paths: | |
- ".github/workflows/flutter_packager.yaml" | |
- "lib/**" | |
- "test/**" | |
- "pubspec.yaml" | |
jobs: | |
semantic-pull-request: | |
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/semantic_pull_request.yml@v1 | |
build: | |
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/dart_package.yml@v1 | |
spell-check: | |
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/spell_check.yml@v1 | |
with: | |
includes: | | |
**/*.md | |
!brick/**/*.md | |
.*/**/*.md | |
modified_files_only: false | |
verify-version: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
sdk: [3.0, 3.1, 3.2, 3.3] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: 🎯 Setup Dart | |
uses: dart-lang/setup-dart@v1 | |
with: | |
sdk: ${{ matrix.sdk }} | |
- name: 📦 Install Dependencies | |
run: | | |
dart pub get | |
- name: 🔎 Verify version | |
run: dart run test --run-skipped -t version-verify |