Skip to content

Merge branch 'master' into 3.0.0 with fix for documentation autodoc p… #1275

Merge branch 'master' into 3.0.0 with fix for documentation autodoc p…

Merge branch 'master' into 3.0.0 with fix for documentation autodoc p… #1275

Workflow file for this run

# For documentation on GitHub Actions Workflows, see:
# https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
name: MyPy
on: [push, pull_request]
permissions:
contents: read
jobs:
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4 # https://github.com/actions/checkout
with:
# Only a single commit is fetched by default, for the ref/SHA that triggered the workflow.
# Set fetch-depth: 0 to fetch all history for all branches and tags.
fetch-depth: 0 # Needed for setuptools_scm to work correctly
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v5
with:
python-version: 3.13
- name: Install the project
run: uv sync --group validate
- name: Run mypy static type checker
run: uv run mypy .