docs: add git clone step to Quickstart #12
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |