-
Notifications
You must be signed in to change notification settings - Fork 4
chore: bdk-ffi submodule pre-0.30.0 #11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 5 commits
dfb0905
b876ecf
694ae55
2fcbff6
057d705
9b53534
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -23,6 +23,8 @@ jobs: | |
|
|
||
| - name: Setup Dart | ||
| uses: dart-lang/setup-dart@v1 | ||
| with: | ||
| sdk: "3.9.2" | ||
|
|
||
| - name: Install lipo (macOS) | ||
| if: matrix.os == 'macos-latest' | ||
|
|
@@ -41,10 +43,10 @@ jobs: | |
| run: dart pub get | ||
|
|
||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. so then we add this before formating/analzing bdk_demo/ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. after the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. maybe in the future when we add widget/integration test to demo we can follow up with |
||
| - name: Format check | ||
| run: dart format --output=none --set-exit-if-changed . | ||
| run: dart format --output=none --set-exit-if-changed lib test examples | ||
|
|
||
| - name: Analyze | ||
| run: dart analyze --fatal-infos --fatal-warnings | ||
| run: dart analyze --fatal-infos --fatal-warnings lib test examples | ||
|
Comment on lines
43
to
58
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. currently the workflow formats/analyzes only lib, test & examples, if we want ci to guard the demo we should add bdk_demo/lib and maybe bdk_demo/tests |
||
|
|
||
| - name: Run tests | ||
| run: | | ||
|
|
||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I had to regenerate our bindings on this update, it was successful, I can see some new types were added |
| +20 −21 | .github/ISSUE_TEMPLATE/release.md | |
| +47 −0 | CHANGELOG.md | |
| +1 −1 | bdk-android/gradle.properties | |
| +1 −1 | bdk-ffi/Cargo.toml | |
| +8 −5 | bdk-ffi/src/kyoto.rs |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
since our bdk_demo is a flutter app we'd have to install flutter in the job