fix deps list #7
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: build | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
strategy: | |
matrix: | |
platform: [ubuntu-24.04] | |
python-version: ["3.10"] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Add requirements | |
run: | | |
sudo apt install -y libopus-dev libopusfile-dev libopusenc-dev | |
python -m pip install --upgrade wheel setuptools librosa | |
- name: Build and install | |
run: pip install --verbose . | |
- name: Test | |
run: python tests/test.py |