Skip to content

Fix: hdwallet docs format name #2

Fix: hdwallet docs format name

Fix: hdwallet docs format name #2

Workflow file for this run

# This workflow will install Swap package dependencies, run tests and lint with a variety of Python versions.
name: HDWallet
on:
push:
branches: [
master
]
pull_request:
branches: [
master
]
jobs:
python:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [
"3.9", "3.10", "3.11", "3.12", "3.13"
]
steps:
- uses: actions/checkout@master
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@master
with:
python-version: ${{ matrix.python-version }}
- name: Install System dependencies
run: |
sudo apt-get update
sudo apt-get install -y libffi-dev libsecp256k1-dev
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[cli,tests]
- name: Test with PyTest with Coverage
run: |
coverage run -m pytest
coverage report