Skip to content

Add GitHub action to run black #1

Add GitHub action to run black

Add GitHub action to run black #1

Workflow file for this run

name: Linters
on: [push, pull_request]
jobs:
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: psf/black@stable
with:
options: "--check --verbose"