Skip to content

alignment of python version supported #154

alignment of python version supported

alignment of python version supported #154

Workflow file for this run

name: Test
on:
push:
branches: ["master"]
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
max-parallel: 1
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -U pip
pip install '.[dev]'
- name: Mypy
run: mypy --show-error-context
- name: Test [wrapper]
if: ${{ always() }}
run: pytest test/test_wrapper.py