diegovalenzuelaiturra / black-action

A GitHub action that runs black code formatter for Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

A GitHub action that runs black code formatter for Python

License:MIT License


Languages

Language:Dockerfile 93.6%Language:Shell 6.4%