2023-07-21 16:20:24 +00:00
|
|
|
---
|
|
|
|
name: libs/langchain CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2023-11-28 17:23:43 +00:00
|
|
|
branches: [master]
|
2023-07-21 16:20:24 +00:00
|
|
|
pull_request:
|
|
|
|
paths:
|
2023-11-28 17:23:43 +00:00
|
|
|
- ".github/actions/poetry_setup/action.yml"
|
|
|
|
- ".github/tools/**"
|
|
|
|
- ".github/workflows/_lint.yml"
|
|
|
|
- ".github/workflows/_test.yml"
|
|
|
|
- ".github/workflows/_pydantic_compatibility.yml"
|
|
|
|
- ".github/workflows/langchain_ci.yml"
|
|
|
|
- "libs/*"
|
|
|
|
- "libs/langchain/**"
|
|
|
|
- "libs/core/**"
|
|
|
|
workflow_dispatch: # Allows to trigger the workflow manually in GitHub UI
|
2023-07-21 16:20:24 +00:00
|
|
|
|
2023-08-22 18:21:26 +00:00
|
|
|
# If another push to the same PR or branch happens while this workflow is still running,
|
|
|
|
# cancel the earlier run in favor of the next run.
|
|
|
|
#
|
|
|
|
# There's no point in testing an outdated version of the code. GitHub only allows
|
|
|
|
# a limited number of job runners to be active at the same time, so it's better to cancel
|
|
|
|
# pointless jobs early so that more useful jobs can run sooner.
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2023-08-22 15:36:52 +00:00
|
|
|
env:
|
2023-10-03 23:23:54 +00:00
|
|
|
POETRY_VERSION: "1.6.1"
|
2023-08-22 15:36:52 +00:00
|
|
|
WORKDIR: "libs/langchain"
|
|
|
|
|
2023-07-21 16:20:24 +00:00
|
|
|
jobs:
|
|
|
|
lint:
|
2023-11-28 17:23:43 +00:00
|
|
|
uses: ./.github/workflows/_lint.yml
|
2023-07-21 16:20:24 +00:00
|
|
|
with:
|
|
|
|
working-directory: libs/langchain
|
|
|
|
secrets: inherit
|
2023-08-22 15:36:52 +00:00
|
|
|
|
2023-07-21 16:20:24 +00:00
|
|
|
test:
|
2023-11-28 17:23:43 +00:00
|
|
|
uses: ./.github/workflows/_test.yml
|
2023-07-21 16:20:24 +00:00
|
|
|
with:
|
|
|
|
working-directory: libs/langchain
|
2023-08-22 15:36:52 +00:00
|
|
|
secrets: inherit
|
|
|
|
|
2023-10-24 15:55:19 +00:00
|
|
|
compile-integration-tests:
|
2023-11-28 17:23:43 +00:00
|
|
|
uses: ./.github/workflows/_compile_integration_test.yml
|
2023-10-24 15:55:19 +00:00
|
|
|
with:
|
|
|
|
working-directory: libs/langchain
|
|
|
|
secrets: inherit
|
|
|
|
|
2023-08-22 15:36:52 +00:00
|
|
|
pydantic-compatibility:
|
2023-11-28 17:23:43 +00:00
|
|
|
uses: ./.github/workflows/_pydantic_compatibility.yml
|
2023-08-22 15:36:52 +00:00
|
|
|
with:
|
|
|
|
working-directory: libs/langchain
|
|
|
|
secrets: inherit
|
|
|
|
|
|
|
|
extended-tests:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
working-directory: ${{ env.WORKDIR }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
python-version:
|
|
|
|
- "3.8"
|
|
|
|
- "3.9"
|
|
|
|
- "3.10"
|
|
|
|
- "3.11"
|
|
|
|
name: Python ${{ matrix.python-version }} extended tests
|
|
|
|
steps:
|
2023-10-23 14:01:33 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-08-22 19:59:22 +00:00
|
|
|
|
|
|
|
- name: Set up Python ${{ matrix.python-version }} + Poetry ${{ env.POETRY_VERSION }}
|
2023-08-22 15:36:52 +00:00
|
|
|
uses: "./.github/actions/poetry_setup"
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
poetry-version: ${{ env.POETRY_VERSION }}
|
2023-08-22 19:59:22 +00:00
|
|
|
working-directory: libs/langchain
|
2023-08-22 15:36:52 +00:00
|
|
|
cache-key: extended
|
2023-08-22 19:59:22 +00:00
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
echo "Running extended tests, installing dependencies with poetry..."
|
|
|
|
poetry install -E extended_testing
|
|
|
|
|
2023-11-20 21:09:30 +00:00
|
|
|
- name: Install langchain core editable
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
poetry run pip install -e ../core
|
|
|
|
|
2023-08-22 15:36:52 +00:00
|
|
|
- name: Run extended tests
|
|
|
|
run: make extended_tests
|
2023-09-06 15:15:16 +00:00
|
|
|
|
|
|
|
- name: Ensure the tests did not create any additional files
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
set -eu
|
|
|
|
|
|
|
|
STATUS="$(git status)"
|
|
|
|
echo "$STATUS"
|
|
|
|
|
|
|
|
# grep will exit non-zero if the target message isn't found,
|
|
|
|
# and `set -e` above will cause the step to fail.
|
|
|
|
echo "$STATUS" | grep 'nothing to commit, working tree clean'
|