Skip to content

Remove unnecessary pytest.mark.asyncio by using aysncio_mode = auto (… #56

Remove unnecessary pytest.mark.asyncio by using aysncio_mode = auto (…

Remove unnecessary pytest.mark.asyncio by using aysncio_mode = auto (… #56

Workflow file for this run

name: build
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.x", "pypy3.8"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: Run pytest with coverage
run: pytest --cov=./ --cov-report=xml
- name: Upload coverage report to codecov
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true