Skip to content

chore(deps): bump ruff from 0.15.5 to 0.15.18 #113

chore(deps): bump ruff from 0.15.5 to 0.15.18

chore(deps): bump ruff from 0.15.5 to 0.15.18 #113

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_call: # lets release.yml run this as a pre-release gate
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
with:
python-version: "3.13"
- run: pip install .[dev]
- name: Ruff lint
run: ruff check .
- name: Ruff format check
run: ruff format --check .
- name: Type check (mypy)
run: mypy
- name: Packaging manifest (check-manifest)
run: check-manifest
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
with:
python-version: ${{ matrix.python-version }}
- name: Install ffmpeg
run: sudo apt-get update && sudo apt-get install -y ffmpeg
- run: pip install .[dev]
- run: pytest --ignore=tests/test_integration.py