Skip to content

Create black-suggest.yml #2

Create black-suggest.yml

Create black-suggest.yml #2

Workflow file for this run

name: black Suggest
on: [pull_request]
jobs:
formatting-check:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install Dependance
run: |
sudo apt isntall python-pip
pip install black==23.12.1
- name: Run black style check.
run: |
black .
- uses: parkerbxyz/suggest-changes@v1
with:
comment: 'Please commit the suggested changes from black.'