Skip to content

Commit 3a96215

Browse files
committed
Add viz extras to lint workflow for langchain-mongodb type checking
1 parent 44e2efc commit 3a96215

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/_lint.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,12 @@ jobs:
4646

4747
- name: Install dependencies
4848
working-directory: ${{ inputs.working-directory }}
49-
run: just install
49+
run: |
50+
if [[ "${{ inputs.working-directory }}" == *"langchain-mongodb"* ]]; then
51+
uv sync --frozen --extra viz
52+
else
53+
just install
54+
fi
5055
5156
- name: Get .mypy_cache to speed up mypy
5257
uses: actions/cache@v4

0 commit comments

Comments
 (0)