Skip to content

Bump deepdiff from 7.0.1 to 8.0.1 in /ci/latest #277

Bump deepdiff from 7.0.1 to 8.0.1 in /ci/latest

Bump deepdiff from 7.0.1 to 8.0.1 in /ci/latest #277

Workflow file for this run

name: Check static types
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install packages
run: |
pip install --upgrade pip
pip install -e '.[tests]'
pip install --upgrade mypy
pip list
- name: Run mypy
run: mypy src/ tests/