Skip to content

Merge pull request #2 from speechmatics/fix-async-for #6

Merge pull request #2 from speechmatics/fix-async-for

Merge pull request #2 from speechmatics/fix-async-for #6

Workflow file for this run

name: Unit tests
on:
push:
branches: "*"
jobs:
unittests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Run unit tests
run: |
make unittest-local