Skip to content

Commit

Permalink
Add apt dependencies to unit test automation
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel committed Oct 7, 2024
1 parent c997355 commit fffef5c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
- name: Install system dependencies
run: |
sudo apt update
sudo apt install -y swig gcc libpulse-dev portaudio19-dev
- name: Install package
run: |
python -m pip install --upgrade pip
pip install .[streaming] -r requirements/test_requirements.txt
Expand Down

0 comments on commit fffef5c

Please sign in to comment.