set up experimental

This commit is contained in:
Harrison Chase
2023-07-19 13:49:41 -07:00
parent beb38f4f4d
commit b1d5fc40a7
1483 changed files with 8970 additions and 1679 deletions

View File

@@ -1,15 +1,21 @@
name: lint
on:
push:
branches: [master]
pull_request:
workflow_call:
inputs:
working-directory:
required: true
type: string
description: "From which folder this pipeline executes"
env:
POETRY_VERSION: "1.4.2"
jobs:
build:
defaults:
run:
working-directory: ${{ inputs.working-directory }}
runs-on: ubuntu-latest
strategy:
matrix:

20
.github/workflows/langchain/lint.yml vendored Normal file
View File

@@ -0,0 +1,20 @@
---
name: Lint libs/langchain
on:
push:
branches: [ master ]
pull_request:
paths:
- '.github/workflows/base/**'
- '.github/workflows/langchain/**'
- 'libs/langchain/**'
workflow_dispatch: # Allows to trigger the workflow manually in GitHub UI
jobs:
ci-libs-fancy:
uses:
./.github/workflows/base/lint.yml
with:
working-directory: libs/langchain
secrets: inherit