Metadata-Version: 2.1
Name: actionlint-py
Version: 1.6.22.2
Summary: Python wrapper around invoking actionlint (https://github.com/rhysd/actionlint)
Home-page: https://github.com/Mateusz-Grzelinski/actionlint-py
Author: Ryan Rhee, Mateusz Grzeliński
Author-email: grzelinskimat@gmail.com
License: MIT
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# actionlint-py

A python wrapper to provide a pip-installable [actionlint] binary.

Internally this package provides a convenient way to download the pre-built
actionlint binary for your particular platform.

### installation

```bash
pip install actionlint-py
```

### usage

After installation, the `actionlint` binary should be available in your
environment (or `actionlint.exe` on windows).

### As a pre-commit hook

See [pre-commit] for instructions

Sample `.pre-commit-config.yaml`:

```yaml
- repo: https://github.com/Mateusz-Grzelinski/actionlint-py
  rev: v1.6.22
  hooks:
  - id: actionlint
```

[actionlint]: https://github.com/rhysd/actionlint
[pre-commit]: https://pre-commit.com
