Skip to content

Bump mypy from 1.13.0 to 1.14.1 #523

Bump mypy from 1.13.0 to 1.14.1

Bump mypy from 1.13.0 to 1.14.1 #523

Workflow file for this run

name: Commit
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 8
matrix:
os: [ubuntu-latest, macos-latest]
version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: set up python ${{ matrix.version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.version }}
- name: setup test env
run: |
python -m pip install --upgrade pip
python -m pip install setuptools
python -m pip install tox
- name: run tox
run: python -m tox --skip-missing-interpreters=true