Skip to content

Add comprehensive unit testing framework with code quality improvements #64

Add comprehensive unit testing framework with code quality improvements

Add comprehensive unit testing framework with code quality improvements #64

Workflow file for this run

name: test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
merge_group:
branches: [ main ]
jobs:
testing:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# todo: add testing for py36 and py37 if needed
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
- name: Run tests
run: uv run pytest -Werror