Skip to content

Update README.md

Update README.md #41

Workflow file for this run

name: Pytests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9.12"]
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
sudo apt-get install -y libsndfile1
- name: Test with pytest
run: python -m pytest --verbose