Skip to content

Add support for more Python versions (#3) #12

Add support for more Python versions (#3)

Add support for more Python versions (#3) #12

Workflow file for this run

---
name: pytest
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-24.04
strategy:
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13-dev"
steps:
- name: Checkout the code
uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- name: Install dependencies
run: poetry install
- name: Run pytest
run: poetry run pytest