Needs sudo apparently
This commit is contained in:
parent
a000289168
commit
cce544dce8
1 changed files with 2 additions and 2 deletions
4
.github/workflows/run-tests.yml
vendored
4
.github/workflows/run-tests.yml
vendored
|
@ -26,11 +26,11 @@ jobs:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
- name: Install libsndfile if necessary (Linux)
|
- name: Install libsndfile if necessary (Linux)
|
||||||
run: |
|
run: |
|
||||||
apt install libsndfile1
|
sudo apt install libsndfile1
|
||||||
if: matrix.os == 'ubuntu-latest'
|
if: matrix.os == 'ubuntu-latest'
|
||||||
- name: Install libsndfile if necessary (macOS)
|
- name: Install libsndfile if necessary (macOS)
|
||||||
run: |
|
run: |
|
||||||
brew install libsndfile
|
sudo brew install libsndfile
|
||||||
if: matrix.os == 'macos-latest'
|
if: matrix.os == 'macos-latest'
|
||||||
- name: Install pyebur128
|
- name: Install pyebur128
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in a new issue