Skip to content

add todo

add todo #1568

Workflow file for this run

name: Ruff - Checks
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Install the project
run: uv sync --all-extras --dev
- name: Ruff livekit-api
run: uvx ruff check --output-format=github .
- name: Check format
run: uvx ruff format --check .