-
Notifications
You must be signed in to change notification settings - Fork 3
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
base: main
Are you sure you want to change the base?
Changes from all 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 |
|---|---|---|
|
|
@@ -21,8 +21,15 @@ jobs: | |
| - name: Setup Rust | ||
| uses: dtolnay/rust-toolchain@stable | ||
|
|
||
| - name: Setup Flutter | ||
| uses: subosito/flutter-action@v2 | ||
| with: | ||
| channel: stable | ||
|
|
||
| - name: Setup Dart | ||
| uses: dart-lang/setup-dart@v1 | ||
| with: | ||
| sdk: "3.9.2" | ||
|
|
||
| - name: Install lipo (macOS) | ||
| if: matrix.os == 'macos-latest' | ||
|
|
@@ -40,11 +47,19 @@ jobs: | |
| - name: Pub get | ||
| 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: Pub get (bdk_demo) | ||
| working-directory: bdk_demo | ||
| run: flutter pub get | ||
|
|
||
| - name: Format check | ||
| run: dart format --output=none --set-exit-if-changed . | ||
| run: dart format --output=none --set-exit-if-changed lib test examples bdk_demo/lib bdk_demo/test | ||
|
|
||
| - name: Analyze | ||
| run: dart analyze --fatal-infos --fatal-warnings | ||
| run: dart analyze --fatal-infos --fatal-warnings lib test examples | ||
|
|
||
| - name: Analyze (bdk_demo) | ||
| working-directory: bdk_demo | ||
| run: flutter analyze | ||
|
|
||
| - 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