Skip to content

Phase 3: Patch library — SQLite storage, tools, and tests #18

Phase 3: Patch library — SQLite storage, tools, and tests

Phase 3: Patch library — SQLite storage, tools, and tests #18

Workflow file for this run

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 .