diff --git a/.github/workflows/lint-workflow.yml b/.github/workflows/lint-workflow.yml index c348498..3cc8b5c 100644 --- a/.github/workflows/lint-workflow.yml +++ b/.github/workflows/lint-workflow.yml @@ -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/*' \ No newline at end of file + pylint modifiable_items_dictionary/ + - name: Analysing the code with mypy + run: | + mypy modifiable_items_dictionary/ \ No newline at end of file