Proto Lint #13
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Proto Lint | |
| on: | |
| #push: | |
| pull_request: | |
| schedule: | |
| - cron: "0 3 * * *" | |
| jobs: | |
| buf-lint: | |
| name: "Proto files linting" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: bufbuild/buf-action@v1 | |
| with: | |
| setup_only: true | |
| - name: Run buf lint | |
| run: buf lint |