Skip to content

Adding support for Python 3.13 #19

Adding support for Python 3.13

Adding support for Python 3.13 #19

name: Pull Request Tests
on:
pull_request:
branches: [ "main" ]
paths:
- 'ikpls/**'
- 'tests/**'
- '.github/**'
- 'pyproject.toml'
jobs:
test_package:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/test
with:
PYTHON_VERSION: ${{ matrix.python-version }}