mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-08-17 21:25:46 +02:00
Added a js-example to show it builds Adapted integration tests after removing the test CLI command --------- Co-authored-by: Nuno Campos <nuno@langchain.dev>
74 lines
2.7 KiB
YAML
74 lines
2.7 KiB
YAML
name: CLI integration test
|
|
|
|
on:
|
|
workflow_call:
|
|
|
|
env:
|
|
POETRY_VERSION: "1.7.1"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python-version:
|
|
- "3.10"
|
|
- "3.11"
|
|
name: "CLI integration test"
|
|
defaults:
|
|
run:
|
|
working-directory: libs/cli
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Get changed files
|
|
id: changed-files
|
|
uses: Ana06/get-changed-files@v2.3.0
|
|
with:
|
|
filter: "libs/cli/**"
|
|
- name: Set up Python ${{ matrix.python-version }} + Poetry ${{ env.POETRY_VERSION }}
|
|
if: steps.changed-files.outputs.all
|
|
uses: "./.github/actions/poetry_setup"
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
poetry-version: ${{ env.POETRY_VERSION }}
|
|
cache-key: integration-test-cli
|
|
- name: Setup env
|
|
if: steps.changed-files.outputs.all
|
|
working-directory: libs/cli/examples
|
|
run: cat .env.example > .env
|
|
- name: Install cli globally
|
|
if: steps.changed-files.outputs.all
|
|
run: pip install -e .
|
|
- name: Build and test service A
|
|
if: steps.changed-files.outputs.all
|
|
working-directory: libs/cli/examples
|
|
run: |
|
|
# The build-arg isn't used; just testing that we accept other args
|
|
langgraph build -t langgraph-test-a --base-image "langchain/langgraph-trial"
|
|
cp .env.example .envg
|
|
timeout 60 python ../../../.github/scripts/run_langgraph_cli_test.py -c langgraph.json -t langgraph-test-a
|
|
- name: Build and test service B
|
|
if: steps.changed-files.outputs.all
|
|
working-directory: libs/cli/examples/graphs
|
|
run: |
|
|
langgraph build -t langgraph-test-b --base-image "langchain/langgraph-trial"
|
|
timeout 60 python ../../../../.github/scripts/run_langgraph_cli_test.py -t langgraph-test-b
|
|
- name: Build and test service C
|
|
if: steps.changed-files.outputs.all
|
|
working-directory: libs/cli/examples/graphs_reqs_a
|
|
run: |
|
|
langgraph build -t langgraph-test-c --base-image "langchain/langgraph-trial"
|
|
timeout 60 python ../../../../.github/scripts/run_langgraph_cli_test.py -t langgraph-test-c
|
|
- name: Build and test service D
|
|
if: steps.changed-files.outputs.all
|
|
working-directory: libs/cli/examples/graphs_reqs_b
|
|
run: |
|
|
langgraph build -t langgraph-test-d --base-image "langchain/langgraph-trial"
|
|
timeout 60 python ../../../../.github/scripts/run_langgraph_cli_test.py -t langgraph-test-d
|
|
|
|
- name: Build JS service
|
|
if: steps.changed-files.outputs.all
|
|
working-directory: libs/cli/js-examples
|
|
run: |
|
|
langgraph build -t langgraph-test-e
|
|
|