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
- Host: GitHub
- URL: https://github.com/jose-lpa/python-isort-check-action
- Owner: jose-lpa
- License: mit
- Created: 2020-12-18T13:24:29.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-18T14:26:27.000Z (about 5 years ago)
- Last Synced: 2025-03-02T01:03:25.808Z (11 months ago)
- Topics: isort, python, qa
- Language: Dockerfile
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```