Skip to content

[formatter] Implement conversion to TextGrid (#4) #16

[formatter] Implement conversion to TextGrid (#4)

[formatter] Implement conversion to TextGrid (#4) #16

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
#
# We use pytest for testing, see: https://docs.pytest.org/en/7.1.x/getting-started.html
# We use flake8 for code style, see: https://flake8.pycqa.org/en/latest/
name: FAVE Python CI
on:
push:
branches: [ "main", "dev", "workflows" ]
pull_request:
branches: [ "main" ]
jobs:
lint-and-test:
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
os: [ubuntu-latest, windows-latest]
exclude:
- os: windows-latest
python-version: "3.9"
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup FFmpeg
uses: FedericoCarboni/setup-ffmpeg@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements-dev.txt
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
env:
HF_TOKEN: ${{ secrets.HF_TOKEN }}
run: |
python -m pytest --cov=./ --cov-report=xml tests/
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3