Skip to content

chore(deps): bump langgraph-checkpoint from 3.0.1 to 4.0.0 #46

chore(deps): bump langgraph-checkpoint from 3.0.1 to 4.0.0

chore(deps): bump langgraph-checkpoint from 3.0.1 to 4.0.0 #46

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up Python 3.11
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
with:
python-version: "3.11"
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run ruff check
run: ruff check .
- name: Run mypy
run: mypy src/ --ignore-missing-imports
- name: Run pytest with coverage
run: pytest --cov=src --cov-fail-under=65