refactor: move small types in types module #1075
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 Swift | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- "bdk-ffi/**" | |
- "bdk-swift/**" | |
pull_request: | |
paths: | |
- "bdk-ffi/**" | |
- "bdk-swift/**" | |
jobs: | |
build: | |
name: "Build and test" | |
runs-on: macos-12 | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v3 | |
- name: "Build Swift package" | |
working-directory: bdk-swift | |
run: bash ./build-xcframework.sh | |
- name: "Run Swift tests" | |
working-directory: bdk-swift | |
run: swift test --skip LiveElectrumClientTests --skip LiveMemoryWalletTests --skip LiveTransactionTests --skip LiveTxBuilderTests --skip LiveWalletTests |