Skip to content

0.6.0 release

0.6.0 release #443

Workflow file for this run

name: Run Python Tests
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- name: Install Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install . pytest pytest-asyncio gevent mypy typing_extensions
- name: Run tests with pytest
run: pytest -s