Skip to content

Commit

Permalink
Update code_formatter.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Bebra777228 authored Nov 12, 2024
1 parent 80ebed9 commit c388341
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions .github/workflows/code_formatter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,16 @@ jobs:
with:
python-version: '3.10'

- name: Установка Black
run: pip install black
- name: Установка зависимостей
run: |
python -m pip install --upgrade pip
pip install black isort autoflake
- name: Запуск autoflake
run: autoflake --in-place --recursive .

- name: Запуск isort
run: isort .

- name: Запуск Black
run: black .
Expand All @@ -45,14 +53,14 @@ jobs:
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add --all
git commit -m "Автоматическое форматирование кода с помощью black"
git commit -m "Автоматическое форматирование кода."
- name: Создание Pull Request
if: steps.changes.outputs.has_changes == 'true'
uses: peter-evans/create-pull-request@v5
with:
delete-branch: true
body: "Автоматическое форматирование кода с помощью black"
title: "Автоматическое форматирование кода"
commit-message: "Автоматическое форматирование кода с помощью black"
body: "Автоматическое форматирование кода."
title: "Автоматическое форматирование кода."
commit-message: "Автоматическое форматирование кода."
branch: formatter/PolGen-Lite

0 comments on commit c388341

Please sign in to comment.