Expose ChannelCounterparty and ReserveType in ChannelDetails #3273
Workflow file for this run
This file contains hidden or 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: CI Checks - Python Tests | |
| on: [push, pull_request] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| check-python: | |
| runs-on: ubuntu-latest | |
| env: | |
| LDK_NODE_PYTHON_DIR: bindings/python | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Generate Python bindings | |
| run: ./scripts/uniffi_bindgen_generate_python.sh | |
| - name: Start bitcoind and electrs | |
| run: docker compose up -d | |
| - name: Run Python unit tests | |
| env: | |
| BITCOIN_CLI_BIN: "docker exec ldk-node-bitcoin-1 bitcoin-cli" | |
| BITCOIND_RPC_USER: "user" | |
| BITCOIND_RPC_PASSWORD: "pass" | |
| ESPLORA_ENDPOINT: "http://127.0.0.1:3002" | |
| run: | | |
| cd $LDK_NODE_PYTHON_DIR | |
| uv run --group dev python -m unittest discover -s src/ldk_node |