Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
vadim committed Dec 18, 2024
1 parent 3f1eb87 commit 9877147
Showing 1 changed file with 15 additions and 8 deletions.
23 changes: 15 additions & 8 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,25 @@ jobs:
# sort-paths: "./app"
LintsMyPy:
runs-on: ubuntu-latest
name: Mypy
steps:
- name: Checkout
uses: actions/checkout@v2
- run: ls -A
- name: Run Mypy
uses: jashparekh/mypy-action@v2
- name: Install python
uses: actions/setup-python@v2
with:
path: "."
mypy_version: "0.910"
requirement_files: "app/requirements.txt"
python_version: "3.10"
python-version: '3.12'
architecture: 'x64'
- name: Install requirements
run: pip install -r requirements.txt
- run: pip install -r app/requirements.txt
- run: mypy app/
# - name: Run Mypy
# uses: jashparekh/mypy-action@v2
# with:
# path: "."
# mypy_version: "0.910"
# requirement_files: "app/requirements.txt"
# python_version: "3.10"

# Tests:
# runs-on: ubuntu-latest
Expand Down

0 comments on commit 9877147

Please sign in to comment.