Skip to content

Commit

Permalink
Update _code_quality.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
eisDNV authored Jul 31, 2024
1 parent ad179c2 commit a28b872
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/_code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,11 @@ jobs:
- name: Run ruff check
run: ruff check --diff .

pyright:
#pyright:
mypy:
runs-on: ubuntu-latest
name: pyright
#name: pyright
name: mypy
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
Expand All @@ -48,7 +50,11 @@ jobs:
run: |
pip install -r requirements.txt
pip install pytest
- name: Install pyright
run: pip install pyright==1.1.352
- name: Run pyright
run: pyright .
#- name: Install pyright
# run: pip install pyright==1.1.352
#- name: Run pyright
# run: pyright .
- name: Install mypy
run: pip install mypy==1.11.1
- name: Run mypy
run: mypy ./case_study

0 comments on commit a28b872

Please sign in to comment.