Skip to content

Raise compatibility dependency floor to 2.2.0 #34

Raise compatibility dependency floor to 2.2.0

Raise compatibility dependency floor to 2.2.0 #34

Workflow file for this run

# This workflow runs Unit-Tests for bote on MacOS
# with the minimum and maximum supported Python versions.
name: MacOS Test
on: [push, pull_request]
jobs:
build:
runs-on: macos-latest
strategy:
matrix:
python-version: ['3.10', '3.14']
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry and dependencies
run: |
python -m pip install --upgrade pip
python -m pip install poetry
poetry install --with dev
- name: Test with pytest (Poetry)
run: |
poetry run pytest