Skip to content

Commit

Permalink
Merge pull request #58 from langchain-ai/raspawar/fix_lint_wf
Browse files Browse the repository at this point in the history
Fix for failing lint workflow
  • Loading branch information
mattf authored Jun 25, 2024
2 parents d173dd3 + b987ad0 commit 3727cd4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,6 @@ jobs:
${{ env.WORKDIR }}/.mypy_cache
key: mypy-lint-${{ runner.os }}-${{ runner.arch }}-py${{ matrix.python-version }}-${{ inputs.working-directory }}-${{ hashFiles(format('{0}/poetry.lock', inputs.working-directory)) }}


- name: Analysing the code with our lint
working-directory: ${{ inputs.working-directory }}
run: |
make lint_package
- name: Install unit test dependencies
# Also installs dev/lint/test/typing dependencies, to ensure we have
# type hints for as many of our libraries as possible.
Expand All @@ -107,6 +101,12 @@ jobs:
working-directory: ${{ inputs.working-directory }}
run: |
poetry install --with test
- name: Analysing the code with our lint
working-directory: ${{ inputs.working-directory }}
run: |
make lint_package
- name: Install unit+integration test dependencies
if: ${{ startsWith(inputs.working-directory, 'libs/partners/') }}
working-directory: ${{ inputs.working-directory }}
Expand Down

0 comments on commit 3727cd4

Please sign in to comment.