Skip to content

Protect audio loading from crashes, replace print warnings with logger #19

Protect audio loading from crashes, replace print warnings with logger

Protect audio loading from crashes, replace print warnings with logger #19

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- run: pip install ruff
- name: Ruff lint check
run: ruff check .
- name: Ruff format check
run: ruff format --check .
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install -r requirements.txt -r requirements-dev.txt
- run: python -m pytest tests/ -v --cov=core --cov=plugins --cov-report=term-missing