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 f6bf0e0 commit 9b588ac
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/code_linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,15 @@ jobs:
with:
python-version: '3.10'

- name: Установка flake8
- name: Установка зависимостей
run: |
pip install flake8
python -m pip install --upgrade pip
pip install flake8 pylint
- name: Запуск flake8
run: flake8 .
continue-on-error: true

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

0 comments on commit 9b588ac

Please sign in to comment.