mirror of
https://github.com/hwchase17/langchain.git
synced 2025-07-07 05:30:39 +00:00
Fix conditional that erroneously always runs. (#9543)
The input it means to test for is `"libs/langchain"` and not `"langchain"`.
This commit is contained in:
parent
c7a5bb6031
commit
875ea4b4c6
2
.github/workflows/_lint.yml
vendored
2
.github/workflows/_lint.yml
vendored
@ -107,7 +107,7 @@ jobs:
|
||||
poetry install
|
||||
- name: Install langchain editable
|
||||
working-directory: ${{ inputs.working-directory }}
|
||||
if: ${{ inputs.working-directory != 'langchain' }}
|
||||
if: ${{ inputs.working-directory != 'libs/langchain' }}
|
||||
run: |
|
||||
pip install -e ../langchain
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user