Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/xen0l/dlint-check

Github Action to run dlint security linter on your Python code
https://github.com/xen0l/dlint-check

flake8 github-actions linter python python3 security security-testing static-analysis

Last synced: about 1 month ago
JSON representation

Github Action to run dlint security linter on your Python code

Lists

README

        

# 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](https://github.com/jpetrucciani/bandit-check) and official issue [#29](https://github.com/duo-labs/dlint/issues/29).