Skip to content

Bump mypy from 1.18.1 to 1.18.2 #66

Bump mypy from 1.18.1 to 1.18.2

Bump mypy from 1.18.1 to 1.18.2 #66

Workflow file for this run

name: Python
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
python:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v5
- uses: astral-sh/setup-uv@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync
- name: Lint
run: uv run ruff check .
- name: Type check
run: uv run mypy --install-types --non-interactive .
- name: Test
run: uv run pytest -v -s --cov=src --cov-report=xml tests
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}