Install libsndfile for tests in Linux/macOS
This commit is contained in:
parent
0755c9a7c3
commit
f9e1689888
1 changed files with 8 additions and 0 deletions
8
.github/workflows/run-tests.yml
vendored
8
.github/workflows/run-tests.yml
vendored
|
@ -24,6 +24,14 @@ jobs:
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
|
- name: Install libsndfile if necessary
|
||||||
|
run: |
|
||||||
|
if [ "$RUNNER_OS" == "Linux" ]; then
|
||||||
|
apt install libsndfile1
|
||||||
|
elif [ "$RUNNER_OS" == "macOS" ]; then
|
||||||
|
brew install libsndfile
|
||||||
|
fi
|
||||||
|
shell: bash
|
||||||
- name: Install pyebur128
|
- name: Install pyebur128
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
|
|
Loading…
Reference in a new issue