Skip to content

Commit

Permalink
Add missing requirements for rtmidi in GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
rdoursenaud committed Oct 29, 2021
1 parent 8172b54 commit 4646d25
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install required headers
run: |
sudo apt update
sudo apt install libasound2-dev
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install required headers
run: |
sudo apt update
sudo apt install libasound2-dev
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
12 changes: 1 addition & 11 deletions .idea/PythonMcu.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 4646d25

Please sign in to comment.