mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
28 lines
634 B
YAML
28 lines
634 B
YAML
---
|
|
name: libs/langchain CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
paths:
|
|
- '.github/workflows/_lint.yml'
|
|
- '.github/workflows/_test.yml'
|
|
- '.github/workflows/langchain_ci.yml'
|
|
- 'libs/langchain/**'
|
|
workflow_dispatch: # Allows to trigger the workflow manually in GitHub UI
|
|
|
|
jobs:
|
|
lint:
|
|
uses:
|
|
./.github/workflows/_lint.yml
|
|
with:
|
|
working-directory: libs/langchain
|
|
secrets: inherit
|
|
test:
|
|
uses:
|
|
./.github/workflows/_test.yml
|
|
with:
|
|
working-directory: libs/langchain
|
|
test_type: '["core", "extended", "core-pydantic-2"]'
|
|
secrets: inherit |