Skip to content

Commit 4646d25

Browse files
committed
Add missing requirements for rtmidi in GitHub actions
1 parent 8172b54 commit 4646d25

File tree

3 files changed

+9
-11
lines changed

3 files changed

+9
-11
lines changed

.github/workflows/pylint.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ jobs:
1313
uses: actions/setup-python@v2
1414
with:
1515
python-version: 3.9
16+
- name: Install required headers
17+
run: |
18+
sudo apt update
19+
sudo apt install libasound2-dev
1620
- name: Install dependencies
1721
run: |
1822
python -m pip install --upgrade pip

.github/workflows/python-app.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ jobs:
2020
uses: actions/setup-python@v2
2121
with:
2222
python-version: 3.9
23+
- name: Install required headers
24+
run: |
25+
sudo apt update
26+
sudo apt install libasound2-dev
2327
- name: Install dependencies
2428
run: |
2529
python -m pip install --upgrade pip

.idea/PythonMcu.iml

Lines changed: 1 addition & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)