Basic maintenance #84
Workflow file for this run
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: python-bip32 | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
tests: | |
strategy: | |
matrix: | |
python-version: [3.8, 3.9, '3.10', 3.11, 3.12] | |
os: | |
- ubuntu-latest | |
- macos-13 # (non-M1) | |
- macos-latest # (M1) | |
- windows-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install MacOS dependencies | |
if: matrix.os == 'macos-latest' || matrix.os == 'macos-13' | |
run: brew install autoconf automake libffi libtool pkg-config python | |
- name: Install from source | |
run: | | |
python -m pip install --upgrade pip | |
pip install setuptools | |
python setup.py install | |
- name: Test with pytest | |
run: | | |
pip install -r tests/requirements.txt | |
pytest -vvv | |
linter: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Run `black` on the source code | |
run: | | |
python -m pip install --upgrade pip | |
pip install black | |
python -m black --check bip32 tests | |
coincurve_versions: | |
strategy: | |
matrix: | |
coincurve-version: [15, 16, 17] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.12 | |
- name: Testing with Coincurve ${{ matrix.coincurve-version }} | |
run: | | |
python -m pip install --upgrade pip | |
pip install setuptools | |
pip install -r tests/requirements.txt | |
pip install -I coincurve==${{ matrix.coincurve-version }} | |
python setup.py install |