Skip to content

Change the MIDI & audio ports used to interface with zynthian. #2

Change the MIDI & audio ports used to interface with zynthian.

Change the MIDI & audio ports used to interface with zynthian. #2

Workflow file for this run

name: pylint
on: [push]
jobs:
pylint:
runs-on: ubuntu-22.04
name: pylint
steps:
- uses: actions/checkout@v3
- name: Install virtualenv
run: |
sudo apt install python3-virtualenv
- name: Setup pylint
run: |
virtualenv modui-env
source modui-env/bin/activate
pip3 install -r requirements.txt
pip3 install pylint
- name: Run pylint
run: |
virtualenv modui-env
source modui-env/bin/activate
pylint -E mod/*.py
# modtools/*.py