Skip to content

pytest auto asyncio

pytest auto asyncio #8

Workflow file for this run

name: Test and Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install dependencies
run: poetry install --all-extras
- name: Run linting
run: |
poetry run ruff check .
poetry run mypy src
- name: Run tests
run: poetry run pytest --asyncio-mode=auto