Skip to content

Commit

Permalink
actions
Browse files Browse the repository at this point in the history
  • Loading branch information
baskaryan committed Dec 5, 2023
1 parent 2767277 commit 9efa93b
Showing 1 changed file with 25 additions and 17 deletions.
42 changes: 25 additions & 17 deletions .github/workflows/_all_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,28 +26,36 @@ env:

jobs:
lint:
uses: ./.github/workflows/_lint.yml
with:
working-directory: ${{ inputs.working-directory }}
secrets: inherit
steps:
- uses: actions/checkout@v4
- uses: "./.github/workflows/_lint.yml"
with:
working-directory: ${{ inputs.working-directory }}
secrets: inherit

test:
uses: ./.github/workflows/_test.yml
with:
working-directory: ${{ inputs.working-directory }}
secrets: inherit
steps:
- uses: actions/checkout@v4
- uses: "./.github/workflows/_test.yml"
with:
working-directory: ${{ inputs.working-directory }}
secrets: inherit

compile-integration-tests:
uses: ./.github/workflows/_compile_integration_test.yml
with:
working-directory: ${{ inputs.working-directory }}
secrets: inherit
steps:
- uses: actions/checkout@v4
- uses: "./.github/workflows/_compile_integration_test.yml"
with:
working-directory: ${{ inputs.working-directory }}
secrets: inherit

pydantic-compatibility:
uses: ./.github/workflows/_pydantic_compatibility.yml
with:
working-directory: ${{ inputs.working-directory }}
secrets: inherit
steps:
- uses: actions/checkout@v4
- uses: "./.github/workflows/_pydantic_compatibility.yml"
with:
working-directory: ${{ inputs.working-directory }}
secrets: inherit

extended-tests:
runs-on: ubuntu-latest
Expand All @@ -71,7 +79,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
poetry-version: ${{ env.POETRY_VERSION }}
working-directory: libs/langchain
working-directory: ${{ inputs.working-directory }}
cache-key: extended

- name: Install dependencies
Expand Down

0 comments on commit 9efa93b

Please sign in to comment.