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

https://github.com/ci-space/protolint-action

GitHub Action for run protolint with plugins
https://github.com/ci-space/protolint-action

code-quality code-review continuous-integration grpc protobuf protolint

Last synced: 21 days ago
JSON representation

GitHub Action for run protolint with plugins

Awesome Lists containing this project

README

          

# protolint-action

protolint-action - action for run protolint with plugins

Supported plugins:
* [protostyle](https://github.com/ci-space/protostyle)

## Usage example

Add new job in your workflow:

```yaml
jobs:
protolint:
name: protolint
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3

- name: Run linter
uses: ci-space/protolint-action@master
```

### 💻 Run locally

```shell
docker run -v ${PWD}:/app ghcr.io/ci-space/protolint-action:v0.1.0 /app ""
```