Skip to content

Merge pull request #498 from alexander-akhmetov/dependabot/pip/ruff-0… #1011

Merge pull request #498 from alexander-akhmetov/dependabot/pip/ruff-0…

Merge pull request #498 from alexander-akhmetov/dependabot/pip/ruff-0… #1011

Workflow file for this run

name: python-telegram tests
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v5.1.1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Tests
run: tox