diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 6c620e76..5519ab0b 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -19,8 +19,8 @@ jobs: with: python-version: '3.11' # Replace '3.x' with your desired Python version - name: Install poetry - run: pip install poetry mypy # You may need additional dependencies here + run: pip install poetry # You may need additional dependencies here - name: Install flarestack run: poetry install - name: Run mypy - run: mypy # Replace 'your_code_directory' with your actual code directory + run: poetry run mypy # Replace 'your_code_directory' with your actual code directory