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 adf7181 commit dec8993Copy full SHA for dec8993
2 files changed
.github/workflows/ci.yml
@@ -63,6 +63,10 @@ jobs:
63
run: |
64
dart test
65
66
+ - name: Run tests (bdk_demo)
67
+ working-directory: bdk_demo
68
+ run: flutter test
69
+
70
windows-smoke:
71
runs-on: windows-latest
72
justfile
@@ -38,13 +38,19 @@ generate-bindings:
38
demo-analyze:
39
cd bdk_demo && flutter analyze
40
41
+[group("Demo")]
42
+[doc("Run Flutter tests for the demo app.")]
43
+demo-test *ARGS:
44
+ cd bdk_demo && flutter test {{ if ARGS == "" { "" } else { ARGS } }}
45
46
[group("CI")]
47
[doc("Run the same checks as CI.")]
48
ci:
49
just format
50
just analyze
51
just test
52
just demo-analyze
53
+ just demo-test
54
55
[group("Dart")]
56
[doc("Remove build and tool artifacts to start fresh.")]
0 commit comments