Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
AhmedLSayed9 committed Jan 11, 2024
1 parent 2a7f106 commit 20a2e0f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,14 @@ jobs:
run: flutter pub get

- name: Verify formatting
run: dart format --output=none --set-exit-if-changed --line-length=100 .
run: |
find . -name "*.dart" \
! -name "*.g.dart" \
! -name "*.freezed.dart" \
! -name "app_localizations*.dart" \
! -path "*/gen/*" \
! -name "firebase_options*.dart" \
| xargs dart format --output=none --set-exit-if-changed --line-length=100
# Consider passing '--fatal-infos' for slightly stricter analysis.
- name: Run flutter analyze
Expand Down

0 comments on commit 20a2e0f

Please sign in to comment.