Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 681 Bytes

README.md

File metadata and controls

28 lines (20 loc) · 681 Bytes

protolint-action

Build Status

A GitHub Action for using protolint in your GitHub Action workflows.

Required inputs

  • configDirectory: the path to where the .protolint.yaml configuration exists.

Example

name: "lint protobuf"
on: pull_request

jobs:
  pr-check:
    runs-on: ubuntu-latest
    steps:
      - name: checkout source
        uses: actions/checkout@v1

      - name: run protolint
        uses: plexsystems/[email protected]
        with:
          configDirectory: test