Skip to content

Create black-suggest.yml #1

Create black-suggest.yml

Create black-suggest.yml #1

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: |
pip install black
- name: Run black style check.
run: |
black .
- uses: parkerbxyz/suggest-changes@v1
with:
comment: 'Please commit the suggested changes from black.'