Skip to content
shield

GitHub Action

dlint check

0.10.1 Latest version

dlint check

shield

dlint check

Github Action to lint Python code with dlint from Duo Labs

Installation

Copy and paste the following snippet into your .yml file.

              

- name: dlint check

uses: xen0l/dlint-check@0.10.1

Learn more about this action in xen0l/dlint-check

Choose a version

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.