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 2095128 commit 13a41e1Copy full SHA for 13a41e1
.github/workflows/analyze.yml
@@ -9,19 +9,17 @@ jobs:
9
- uses: actions/checkout@v2
10
- uses: subosito/flutter-action@v1
11
with:
12
- flutter-version: "2.5.1"
+ channel: stable
13
- name: Install pub dependencies
14
run: |
15
for d in `pwd`/packages/*/; do
16
cd $d
17
flutter pub get
18
done
19
- name: Verify formatting
20
- run: flutter format --set-exit-if-changed packages
21
- - name: Analyze the plugin's Dart code
22
- run: |
23
- cd packages
24
- flutter analyze
+ run: dart format --output=none --set-exit-if-changed packages
+ - name: Analyze source code
+ run: dart analyze --fatal-infos packages
25
clang:
26
runs-on: ubuntu-latest
27
steps:
0 commit comments