Skip to content

build(deps): bump actions/checkout from 5 to 6 #349

build(deps): bump actions/checkout from 5 to 6

build(deps): bump actions/checkout from 5 to 6 #349

Workflow file for this run

---
name: mypy
"on":
push:
branches:
- main # Set a branch to deploy
pull_request:
jobs:
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Set up Python 3.13
uses: actions/setup-python@v6
with:
python-version: '3.13'
- name: Running mypy
run: |
python -m pip install --quiet --no-cache-dir --upgrade uv
uv run mypy --strict $(basename $(pwd) | sed -E 's/-/_/') tests