Skip to content

Add black github action #1

Add black github action

Add black github action #1

Workflow file for this run

name: Formatting
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psf/black@stable
with:
options: "--check --verbose"
src: "./src"
- uses: isort/isort-action@master