Skip to content

Commit

Permalink
Don't check models file format
Browse files Browse the repository at this point in the history
  • Loading branch information
veloce committed Aug 2, 2024
1 parent a9d42cb commit cf51fcb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/dart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ jobs:
run: dart pub get

- name: Verify formatting
run: dart format --output=none --set-exit-if-changed .
run: |
dart format --output=none --set-exit-if-changed $(find lib/src -name "*.dart" -not \( -name "*models.dart" \) )
dart format --output=none --set-exit-if-changed $(find test -name "*.dart" )
- name: Analyze project source
run: dart analyze
Expand Down

0 comments on commit cf51fcb

Please sign in to comment.