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
- Host: GitHub
- URL: https://github.com/ci-space/protolint-action
- Owner: ci-space
- Created: 2025-01-12T17:47:37.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-11-08T20:40:43.000Z (7 months ago)
- Last Synced: 2025-11-08T22:10:55.725Z (7 months ago)
- Topics: code-quality, code-review, continuous-integration, grpc, protobuf, protolint
- Language: Dockerfile
- Homepage:
- Size: 37.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 ""
```