From 9efa93b5ed612d678bab1734ae07cd9da5071ec5 Mon Sep 17 00:00:00 2001 From: Bagatur Date: Tue, 5 Dec 2023 10:55:59 -0800 Subject: [PATCH] actions --- .github/workflows/_all_ci.yml | 42 +++++++++++++++++++++-------------- 1 file changed, 25 insertions(+), 17 deletions(-) diff --git a/.github/workflows/_all_ci.yml b/.github/workflows/_all_ci.yml index e5a9e6f5c737b..68210fd09bce3 100644 --- a/.github/workflows/_all_ci.yml +++ b/.github/workflows/_all_ci.yml @@ -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 @@ -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