Skip to content

⬆️ Bump langchain from 0.1.20 to 0.2.10 #2393

⬆️ Bump langchain from 0.1.20 to 0.2.10

⬆️ Bump langchain from 0.1.20 to 0.2.10 #2393

Workflow file for this run

name: Check
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-20.04, macOS-10.15, windows-2019]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: pip install poetry
- name: Set up cache
uses: actions/cache@v4.0.0
with:
path: .venv
key: venv-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('poetry.lock') }}
- name: Install dependencies
run: |
poetry config virtualenvs.in-project true
make install
- name: Run tests
run: |
make test
- name: Run style checks
run: |
make check-codestyle