Skip to content

Update "Roadmap" section of README #17

Update "Roadmap" section of README

Update "Roadmap" section of README #17

Workflow file for this run

name: Code Quality
on:
pull_request:
branches:
- "*"
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@master
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install PortAudio to install PyAudio
run: |
sudo apt-get update
sudo apt-get install python3-pyaudio portaudio19-dev python3-dev
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt -r requirements-dev.txt
- name: Run pre-commit
run: |
SKIP=no-commit-to-branch pre-commit run --all-files --show-diff-on-failure