Skip to content

jpetrucciani/ruff-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

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ruff-check

GitHub Action for ruff

Inputs

path

The path to run ruff on

Default "."

format

Format to output ruff messages in

Default "github"

flags

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

Default ""

Outputs

None

Example usage

uses: jpetrucciani/ruff-check@main

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

# or specify more flags!
uses: jpetrucciani/ruff-check@main
with:
  flags: '--exclude ./env/'