Skip to content

chore(deps-dev): bump mypy from 1.19.1 to 1.20.0 #28

chore(deps-dev): bump mypy from 1.19.1 to 1.20.0

chore(deps-dev): bump mypy from 1.19.1 to 1.20.0 #28

Workflow file for this run

name: ci
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
cache-dependency-path: pyproject.toml
- name: Install package and dev dependencies
run: make install-dev
- name: Run validation suite
run: make check