Parallelize AudioSplitter._segments_to_data method #61
This file contains 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: Formatter | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
name: Run Formatter | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- name: isort formatter | |
uses: isort/isort-action@v1 | |
with: | |
configuration: "--src src --line-length 120 --lines-between-types 1 --lines-after-imports 2 --check-only --diff" |