Skip to content

add black.yml format check github action, and reformat remaining files in repo that did not pass check #1

add black.yml format check github action, and reformat remaining files in repo that did not pass check

add black.yml format check github action, and reformat remaining files in repo that did not pass check #1

Workflow file for this run

name: Black (formatter)
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: psf/black@stable
with:
options: "--check --verbose"
version: "~= 24.0"