Skip to content

Merge pull request #216 from lucaswerkmeister/patch-1 #146

Merge pull request #216 from lucaswerkmeister/patch-1

Merge pull request #216 from lucaswerkmeister/patch-1 #146

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.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
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
- name: Test [all]
run: pytest