Skip to content

Github Action to run dlint security linter on your Python code

License

Notifications You must be signed in to change notification settings

xen0l/dlint-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

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dlint-check

This GitHub Action runs dlint security linter on your Python code.

Inputs

path

The path to a file or directory to run dlint on

Required False

Default .

Outputs

output

Linter output

Example usage

Without specifying a path

- uses: actions/checkout@v1
- uses: xen0l/dlint-check@master

With specifying a path

- uses: actions/checkout@v1
- uses: xen0l/dlint-check@master
  with:
    path: 'my_module'

Special notes

This GitHub Action was inpsired by bandit-check and official issue #29.