fix: pp and name #12
Workflow file for this run
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 Checks | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: ["main"] | |
paths: | |
- '**/*.dart' | |
jobs: | |
flutter-check: | |
name: Flutter Checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Setup Flutter Environment | |
uses: ./.github/actions/flutter-setup | |
with: | |
firebase-options: ${{ secrets.FIREBASE_OPTIONS }} | |
- name: Dart Format Check | |
run: dart format --output=none . --set-exit-if-changed | |
- name: Flutter Analyze | |
run: flutter analyze |