fix: Add silence to the user recording buffer when using the mute filter #4199
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: format | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- "**" | |
paths-ignore: | |
- "docs/**" | |
concurrency: | |
group: build-format-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
ruff-format: | |
name: "Formatting checker" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Setup virtual environment | |
run: | | |
python -m venv .venv | |
- name: Install development Python dependencies | |
run: | | |
source .venv/bin/activate | |
python -m pip install --upgrade pip | |
pip install -r dev-requirements.txt | |
- name: Ruff formatter | |
id: ruff-format | |
run: | | |
source .venv/bin/activate | |
ruff format --diff | |
- name: Ruff import linter | |
id: ruff-check | |
run: | | |
source .venv/bin/activate | |
ruff check --select I |