Skip to content

Bump version to 0.75.1 #77

Bump version to 0.75.1

Bump version to 0.75.1 #77

Workflow file for this run

name: Run Tests
on:
push:
pull_request:
workflow_call: # Added to allow calling from release workflow
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
runs-on: ${{ matrix.os }}
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 --upgrade pip
pip install pytest pytest-cov
pip install -e ".[test]"
- name: Run tests
run: |
pytest tests/ -v --cov=klp --cov-report=term-missing