Skip to content

jpetrucciani/black-check

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

50 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

black-check

GitHub Action for black

Inputs

path

Optional The path to run black on

Default "."

black_flags

Optional Optional black flags (refer to black --help)

Default ""

Outputs

None

Example usage

uses: jpetrucciani/black-check@master

# or specify a path!
uses: jpetrucciani/black-check@master
with:
  path: '.'

# or specify more flags!
uses: jpetrucciani/black-check@master
with:
  black_flags: '--exclude ./env/'