Skip to content

Commit

Permalink
Update code_linter.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Bebra777228 authored Nov 12, 2024
1 parent 5a506e3 commit 9e0b723
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions .github/workflows/code_linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,28 @@ jobs:
- name: Установка зависимостей
run: |
python -m pip install --upgrade pip
pip install flake8 pylint vulture radon
pip install flake8 pylint bandit mypy prospector vulture
- name: Запуск flake8
run: flake8 .
continue-on-error: true

- name: Запуск PyLint
run: pylint .
run: pylint .
continue-on-error: true

- name: Запуск Vulture
run: vulture .
- name: Запуск Bandit
run: bandit -r .
continue-on-error: true

- name: Запуск Mypy
run: mypy .
continue-on-error: true

- name: Запуск Radon
run: radon cc .
- name: Запуск Prospector
run: prospector .
continue-on-error: true

- name: Запуск Vulture
run: vulture .
continue-on-error: true

0 comments on commit 9e0b723

Please sign in to comment.