Skip to content

Additional options enabled on Google TTS #2812

Additional options enabled on Google TTS

Additional options enabled on Google TTS #2812

Workflow file for this run

name: Ruff - Checks
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Ruff
run: ruff check --output-format=github .
- name: Check format
run: ruff format --check .