Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 430 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 430 Bytes

Black Code Formatter GitHub Action

A GitHub action that runs black code formatter for Python.

Example Workflow

workflow "Example Workflow" {
  on = "push"
  resolves = ["Lint"]
}

action "Lint" {
  uses = "lgeiger/black-action@master"
  args = ". --check"
}

For a full list of possible args checkout the black docs.