Skip to content

Commit

Permalink
fix: Adding dependencies for mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
gitaroktato committed Apr 9, 2024
1 parent 5239b35 commit c32274e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v1
- name: Install mypy
run: pip install mypy
run: |
python -m pip install --upgrade pip
pip install mypy
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run mypy
uses: sasanquaneuf/mypy-github-action@releases/v1
with:
Expand Down

0 comments on commit c32274e

Please sign in to comment.