Update: python docs endpoint & fix typo #57
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
| # This workflow will install python-hdwallet dependencies, run tests, collect coverage, and submit it to Coveralls. | |
| name: python-hdwallet | |
| on: | |
| push: | |
| branches: | |
| - master | |
| tags: | |
| - 'v[0-9]+.[0-9]+.[0-9]+' | |
| 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: | |
| - name: Checkout repository | |
| uses: actions/checkout@master | |
| - name: Setup 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 | |
| - name: Submit Coverage to Coveralls | |
| if: ${{ matrix.python-version == '3.12' && github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/v')) }} | |
| run: | | |
| pip install coveralls pyyaml | |
| coveralls | |
| env: | |
| COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} |