Skip to content

docs: add git clone step to Quickstart #12

docs: add git clone step to Quickstart

docs: add git clone step to Quickstart #12

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install system audio libraries
run: sudo apt-get update && sudo apt-get install -y libportaudio2
- name: Install test tooling
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements-dev.txt numpy sounddevice soundfile
- name: Lint
run: ruff check .
- name: Type check
run: pyright
- name: Tests
run: pytest