Skip to content

Merge pull request #47 from badgeir/develop #294

Merge pull request #47 from badgeir/develop

Merge pull request #47 from badgeir/develop #294

Workflow file for this run

name: Tests
on: push
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
os: [ubuntu-latest]
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: python3 -m pip install poetry
- run: poetry install --with dev
- run: poetry run make test