Skip to content

Merge pull request #62 from agimus-project/dependabot/pip/ruff-0.0.289 #352

Merge pull request #62 from agimus-project/dependabot/pip/ruff-0.0.289

Merge pull request #62 from agimus-project/dependabot/pip/ruff-0.0.289 #352

Workflow file for this run

name: Tests & Coverage
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- run: pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- run: poetry install --with dev -E render
- run: poetry run coverage run -m unittest
- uses: codecov/codecov-action@v3