Skip to content

feat: Update Python version requirements and refactor dependency hand… #9

feat: Update Python version requirements and refactor dependency hand…

feat: Update Python version requirements and refactor dependency hand… #9

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- main
jobs:
Testing:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.9, "3.10", 3.11, 3.12, 3.13]
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: pdm-project/setup-pdm@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
pdm install -dGtest
- name: Run Tests
run: |
pdm run pytest -v tests