Skip to content

Bump mypy from 1.11.1 to 1.11.2 #298

Bump mypy from 1.11.1 to 1.11.2

Bump mypy from 1.11.1 to 1.11.2 #298

Workflow file for this run

name: test
on:
push:
branches: [main]
tags: ["*"]
pull_request:
workflow_dispatch:
permissions: { contents: read }
jobs:
test:
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- uses: actions/setup-python@v5
with: { python-version: "${{ matrix.python-version }}" }
- name: Set up poetry
run: |
pip install --upgrade pip
pip install poetry
- run: poetry install --no-root --with=dev
- uses: PyO3/maturin-action@v1
with: { args: "--release" }
- run: make test