feat: add optional sign_options argument to Wallet::finalize_psbt method #496
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Kotlin/JVM | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- "bdk-ffi/**" | |
- "bdk-jvm/**" | |
pull_request: | |
paths: | |
- "bdk-ffi/**" | |
- "bdk-jvm/**" | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: "Check out PR branch" | |
uses: actions/checkout@v4 | |
- name: "Cache" | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
./target | |
key: ${{ runner.os }}-${{ hashFiles('**/Cargo.toml','**/Cargo.lock') }} | |
- name: "Set up JDK" | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: "Run JVM tests" | |
run: | | |
cd bdk-jvm | |
bash ./scripts/build-linux-x86_64.sh | |
./gradlew test -P excludeConnectedTests |