Skip to content

More progress on region-based editing approach #35

More progress on region-based editing approach

More progress on region-based editing approach #35

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.13
uses: actions/setup-python@v3
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mypy
# FIXME: stop using --no-deps once multilspy removes pydantic dependency
if [ -f requirements.txt ]; then pip install --no-deps -r requirements.txt; fi
- name: Typecheck with mypy
run: |
mypy .