Skip to content

Rerun black

Rerun black #11

Workflow file for this run

name: Formatting
on: [push, pull_request]
jobs:
check-formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Black Code Formatter
uses: lgeiger/black-action@master
with:
args: "--line-length 120 . --check"
name: black-action