Skip to content

Add explicit support for Python 3.12 #102

Add explicit support for Python 3.12

Add explicit support for Python 3.12 #102

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, '3.10', '3.11', '3.12']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install the latest Pip and Wheel
run: pip install --upgrade pip wheel
- name: Set up Poetry
uses: abatilo/actions-poetry@v2
- name: Check package setup
run: poetry check
- name: Install dependencies
run: poetry install --with test
- name: Test
run: poetry run pytest --doctest-modules