File tree Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Original file line number Diff line number Diff line change 2121 - name : Setup Rust
2222 uses : dtolnay/rust-toolchain@stable
2323
24+ - name : Setup Flutter
25+ uses : subosito/flutter-action@v2
26+ with :
27+ channel : stable
28+
2429 - name : Setup Dart
2530 uses : dart-lang/setup-dart@v1
31+ with :
32+ sdk : " 3.9.2"
2633
2734 - name : Install lipo (macOS)
2835 if : matrix.os == 'macos-latest'
@@ -40,11 +47,19 @@ jobs:
4047 - name : Pub get
4148 run : dart pub get
4249
50+ - name : Pub get (bdk_demo)
51+ working-directory : bdk_demo
52+ run : flutter pub get
53+
4354 - name : Format check
44- run : dart format --output=none --set-exit-if-changed .
55+ run : dart format --output=none --set-exit-if-changed lib test examples bdk_demo/lib bdk_demo/test
4556
4657 - name : Analyze
47- run : dart analyze --fatal-infos --fatal-warnings
58+ run : dart analyze --fatal-infos --fatal-warnings lib test examples
59+
60+ - name : Analyze (bdk_demo)
61+ working-directory : bdk_demo
62+ run : flutter analyze
4863
4964 - name : Run tests
5065 run : |
You can’t perform that action at this time.
0 commit comments