Skip to content

build(deps): bump langchain-openai from 0.3.28 to 0.3.29 in /api #1281

build(deps): bump langchain-openai from 0.3.28 to 0.3.29 in /api

build(deps): bump langchain-openai from 0.3.28 to 0.3.29 in /api #1281

Workflow file for this run

name: Chatbot API CI
permissions:
contents: read
on:
push:
branches:
- main
paths:
- '.github/workflows/api-ci.yml'
- 'api/**'
pull_request:
types:
- opened
- synchronize
paths:
- '.github/workflows/api-ci.yml'
- 'api/**'
workflow_dispatch: # Allows to trigger the workflow manually in GitHub UI
jobs:
lint:
defaults:
run:
working-directory: api
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
cache: "pipenv"
- name: Install pipenv
run: pip install pipenv
- name: Install Dependencies
run: pipenv sync -d
- name: Lint
run: make lint
test:
defaults:
run:
working-directory: api
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
cache: "pipenv"
- name: Install pipenv
run: pip install pipenv
- name: Install Dependencies
run: pipenv sync -d
- name: Test
run: make test
# We need database access to enable this job
check-db:
if: false
defaults:
run:
working-directory: api
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
cache: "pipenv"
- name: Install pipenv
run: pip install pipenv
- name: Install Dependencies
run: pipenv sync -d
- name: Check Database
run: alembic check