Skip to content

Package updates

Package updates #82

Workflow file for this run

name: Type Checks
on:
pull_request:
branches: [main]
workflow_dispatch:
jobs:
mypy:
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
name: Mypy - Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
id: setup-python
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: pip install poetry
- name: Install Python dependencies
run: poetry install
- name: Run mypy
run: poetry run mypy --config-file shpyx/mypy.toml .