We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91177eb commit b4f927eCopy full SHA for b4f927e
.github/workflows/on_push.yml
@@ -14,6 +14,19 @@ jobs:
14
- run: ./am deps
15
- run: ./am analyze --fatal-warnings --fatal-infos
16
17
+ format-with-default-dart:
18
+ timeout-minutes: 10
19
+ runs-on: ubuntu-latest
20
+ steps:
21
+ - uses: actions/checkout@v2
22
+ - uses: subosito/flutter-action@v2
23
+ with:
24
+ channel: 'stable'
25
+ - name: Check version
26
+ - run: dart --version
27
+ - name: Check formatting
28
+ run: find . -name "*.dart" ! -name "*.g.dart" ! -name "*.freezed.dart" ! -path '*/generated/*' ! -path '*/gen/*' | xargs dart format --set-exit-if-changed
29
+
30
format:
31
timeout-minutes: 10
32
runs-on: ubuntu-latest
0 commit comments