Skip to content

Add build-system to fix entry point installation (#3) #10

Add build-system to fix entry point installation (#3)

Add build-system to fix entry point installation (#3) #10

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 .