Skip to content

feat(library): add file library with audio-transcription correlation #1

feat(library): add file library with audio-transcription correlation

feat(library): add file library with audio-transcription correlation #1

Workflow file for this run

name: Tests
on:
push:
branches: [ "main", "master" ]
pull_request:
branches: [ "main", "master" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
# Install ffmpeg for completeness, although mocked tests might skip it
sudo apt-get update && sudo apt-get install -y ffmpeg
- name: Run tests
run: |
pytest