This repository was archived by the owner on Apr 7, 2026. It is now read-only.
docs: Update template metadata for various Dart and Flutter projects #870
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: all_dart_packages | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - 'docs/**' | |
| push: | |
| paths-ignore: | |
| - 'docs/**' | |
| branches: | |
| - main | |
| jobs: | |
| format: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: subosito/flutter-action@v2 | |
| - uses: bluefireteam/melos-action@v3 | |
| - run: melos run format-check | |
| analyze: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: subosito/flutter-action@v2 | |
| - uses: bluefireteam/melos-action@v3 | |
| - uses: invertase/github-action-dart-analyzer@v2.0.0 | |
| with: | |
| fatal-infos: true | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| cache: true | |
| - uses: bluefireteam/melos-action@v3 | |
| - name: Run tests | |
| run: melos test |