Skip to content

chore(deps): update langchain-google-genai requirement from >=1.0.0 to >=1.0.10 #2

chore(deps): update langchain-google-genai requirement from >=1.0.0 to >=1.0.10

chore(deps): update langchain-google-genai requirement from >=1.0.0 to >=1.0.10 #2

Workflow file for this run

name: Sanity Check
on:
push:
branches: [ "main", "master" ]
pull_request:
branches: [ "main", "master" ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: |
PYTHONPATH=. pytest