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: 6 days ago
JSON representation
Github Action to run dlint security linter on your Python code
- Host: GitHub
- URL: https://github.com/xen0l/dlint-check
- Owner: xen0l
- License: mit
- Created: 2020-01-03T14:50:28.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-04-29T21:02:00.000Z (over 3 years ago)
- Last Synced: 2024-10-10T12:48:16.494Z (29 days ago)
- Topics: flake8, github-actions, linter, python, python3, security, security-testing, static-analysis
- Language: Dockerfile
- Size: 5.86 KB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-actions - Run dlint security linter on your Python code
- fucking-awesome-actions - Run dlint security linter on your Python code
- awesome-workflows - Run dlint security linter on your Python code
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).