Skip to content

57 telegram: start_call now only returns after the call has actually … #36

57 telegram: start_call now only returns after the call has actually …

57 telegram: start_call now only returns after the call has actually … #36

Workflow file for this run

name: Run Tests
on:
push:
branches:
- "**"
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ "3.10", "3.11" ]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Tests
run: |
python -m unittest discover test