Skip to content

Try to simplify some of the CI and add support for Python 3.13 #938

Try to simplify some of the CI and add support for Python 3.13

Try to simplify some of the CI and add support for Python 3.13 #938

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
- uses: actions/setup-python@v5 # https://github.com/actions/setup-python
with:
python-version: 3.13
allow-prereleases: true
# 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
- run: pip install -U --user pip setuptools setuptools-scm nox
- run: python -m nox --non-interactive --session validate-${{ python-version }} -k mypy # Run nox for mypy

Check failure on line 23 in .github/workflows/mypy.yml

View workflow run for this annotation

GitHub Actions / MyPy

Invalid workflow file

The workflow is not valid. .github/workflows/mypy.yml (Line: 23, Col: 14): Unrecognized named-value: 'python-version'. Located at position 1 within expression: python-version