Skip to content

chore(deps): bump aiohttp in the pip group across 1 directory #353

chore(deps): bump aiohttp in the pip group across 1 directory

chore(deps): bump aiohttp in the pip group across 1 directory #353

Workflow file for this run

name: Run Tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install setup dependencies
run: python -m pip install --upgrade pip setuptools wheel
- name: Install Batchalign
run: python -m pip install -e ".[dev]"
- name: Run tests
run: python -m pytest batchalign --disable-pytest-warnings -k 'not test_whisper_fa_pipeline'