Skip to content

Adding isort, black, and flake8 to GH workflows #4

Adding isort, black, and flake8 to GH workflows

Adding isort, black, and flake8 to GH workflows #4

Workflow file for this run

name: black
on:
push:
branches: [ master ]
pull_request:
jobs:
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: psf/black@stable
with:
version: "~= 22.0"