Skip to content

ci: fix branch name creation in release workflow #8

ci: fix branch name creation in release workflow

ci: fix branch name creation in release workflow #8

Workflow file for this run

name: mypy check
on: push
jobs:
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python 3.13
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e .[dev]
- name: Run mypy
run: |
mypy .