chore: Update lint workflow to use poetry for running Mypy (#3630)

Update lint workflow to run Mypy directly with poetry
This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-08-30 13:03:38 -03:00 committed by GitHub
commit 1a5752c025
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -38,6 +38,6 @@ jobs:
poetry install
- name: Run Mypy
run: |
make lint
poetry run mypy --namespace-packages -p "langflow"
env:
GITHUB_TOKEN: ${{ secrets.github_token }}