Skip to content

Addressed PR comments #81

Addressed PR comments

Addressed PR comments #81

Workflow file for this run

name: Python testing
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install '.[testing]'
- name: Test with pytest
run: pytest