Phase 3: Patch library — SQLite storage, tools, and tests #18
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: | |
| branches: [main] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: astral-sh/setup-uv@v5 | |
| with: | |
| python-version: "3.14" | |
| - name: Install system dependencies for python-rtmidi | |
| run: sudo apt-get update && sudo apt-get install -y libasound2-dev libjack-jackd2-dev | |
| - run: uv sync | |
| - run: uv run ruff check . | |
| - run: uv run ruff format --check . | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: astral-sh/setup-uv@v5 | |
| with: | |
| python-version: "3.14" | |
| - name: Install system dependencies for python-rtmidi | |
| run: sudo apt-get update && sudo apt-get install -y libasound2-dev libjack-jackd2-dev | |
| - run: uv sync | |
| - run: uv run pytest . |