Skip to content

Update project to support Python 3.12 and adjust dependencies #2

Update project to support Python 3.12 and adjust dependencies

Update project to support Python 3.12 and adjust dependencies #2

Workflow file for this run

name: Python Tests
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.11"
- "3.12"
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: pip install poetry
- name: Install dependencies
run: poetry install
- name: Run unit tests
run: poetry run pytest