Skip to content

Prepare 0.2.1

Prepare 0.2.1 #61

name: Python Package using pre-built Linux binaries
on:
pull_request:
branches: [main]
types: [synchronize, opened, reopened, ready_for_review]
jobs:
build-and-test:
name: Test on ${{ matrix.os }} - Python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-22.04", "ubuntu-20.04", "ubuntu-24.04"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Python version
run: |
which python
- name: ldd version
run: |
ldd --version
- name: Install dependencies
run: |
pip install .[test]
- name: Installed wavpack version
run: |
python -c "import wavpack_numcodecs; print(wavpack_numcodecs.wavpack_version)"
- name: Test imports and version
run: |
pytest -s tests/test_imports.py
- name: Test with pytest
run: |
pytest -v