Skip to content

feat: add bridge_in, bridge_out, bridge_status methods #2

feat: add bridge_in, bridge_out, bridge_status methods

feat: add bridge_in, bridge_out, bridge_status methods #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Build & Verify
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install package
run: pip install -e ".[x402]"
- name: Verify import
run: python -c "from zero_network import Wallet; w = Wallet.create(); print('OK')"