Fix function calling when writing word timestamps #547
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: ImportManager Test | |
on: | |
pull_request: | |
branches: [ "main" ] | |
workflow_dispatch: # Allows manual workflow triggering | |
permissions: | |
contents: read | |
jobs: | |
import-manager-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v3 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements/tests.txt | |
pip install -r requirements/main.txt | |
- name: Run ImportManager Test | |
run: | | |
python -m pytest tests/test_import_manager.py --maxfail=1 --disable-warnings | |