Skip to content

Merge pull request #14 from n0rfas/dev #14

Merge pull request #14 from n0rfas/dev

Merge pull request #14 from n0rfas/dev #14

name: python versions compatibility check (main)
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
tests:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python-version }}"
- run: pipx install "poetry~=2.0.0"
- run: poetry install --with dev
- run: poetry run pytest --verbose