Skip to content

Commit

Permalink
adding pylint and mypy to pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
tybruno committed Jun 20, 2024
1 parent 2020ca7 commit 43257cb
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/lint-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,15 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
pip install pylama
mypy
- name: Analysing the code with pylama
run: |
pylama --skip='tests/*'
- name: Analysing the code with pylint
run: |
pylama --skip='tests/*'
pylint modifiable_items_dictionary/
- name: Analysing the code with mypy
run: |
mypy modifiable_items_dictionary/

0 comments on commit 43257cb

Please sign in to comment.