Skip to content

bug fixes

bug fixes #27

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
release:
types:
- published
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
# Note that we do an editable install so that coverage can look at the files in src/
run: |
python3 -m pip install --upgrade pip
python3 -m pip install .
python3 -m pip install pytest
python3 -m pip install pytest-cov
- name: Test with pytest
run: |
python3 -m pytest --cov=static_interpolation/