Skip to content

Fix getter function #89

Fix getter function

Fix getter function #89

Workflow file for this run

name: Testing and Coverage
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
Testing:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
with:
submodules: true
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run Tests
run: |
pip install -e .[tests,validation]
pytest -v .