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

https://github.com/jose-lpa/python-isort-check-action

GitHub action to run isort checks in your Python code
https://github.com/jose-lpa/python-isort-check-action

isort python qa

Last synced: 10 months ago
JSON representation

GitHub action to run isort checks in your Python code

Awesome Lists containing this project

README

          

# Python isort check action

GitHub Action for [isort](https://pycqa.github.io/isort/)

## Inputs

### `path`

**Optional** The path to run isort on.
**Default** `"."`

### `settings-path`

**Optional** Path of the settings file to be used by isort.
**Default** `"."`

## Outputs

The `isort` command output.

## Example usages

```yaml
uses: jose-lpa/python-isort-check-action@master
with:
path: "my_project"
settings-path: .isort.cfg
```