Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ jobs:
run: |
dart test

- name: Run tests (bdk_demo)
working-directory: bdk_demo
run: flutter test

windows-smoke:
runs-on: windows-latest

Expand Down
6 changes: 6 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,19 @@ generate-bindings:
demo-analyze:
cd bdk_demo && flutter analyze

[group("Demo")]
[doc("Run Flutter tests for the demo app.")]
demo-test *ARGS:
cd bdk_demo && flutter test {{ if ARGS == "" { "" } else { ARGS } }}

[group("CI")]
[doc("Run the same checks as CI.")]
ci:
just format
just analyze
just test
just demo-analyze
just demo-test

[group("Dart")]
[doc("Remove build and tool artifacts to start fresh.")]
Expand Down
Loading