test loading samples from a corrupted audio file #18
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: Unit tests | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- .github/workflows/unit-tests.yml | |
- arver/** | |
- tests/** | |
- setup.py | |
- requirements.txt | |
pull_request: | |
branches: | |
- master | |
paths: | |
- .github/workflows/unit-tests.yml | |
- arver/** | |
- tests/** | |
- setup.py | |
- requirements.txt | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install pycdio dependencies from distribution | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libcdio-dev libiso9660-dev libdiscid-dev | |
- name: Install ARver dependencies from distribution | |
run: | | |
sudo apt-get install -y libsndfile-dev | |
- name: Install ARver dependencies from PyPI | |
run: | | |
python3 --version | |
python3 -m pip install --upgrade pip | |
pip3 install -r requirements.txt | |
pip3 list | |
- name: Build C extension | |
run: | | |
make ext | |
- name: Run unit tests | |
run: | | |
make test |