chore(protobuf): decode procs to return result #8431
Workflow file for this run
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: Linters | |
| on: | |
| pull_request: | |
| merge_group: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| nph: | |
| name: Linters | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 2 # In PR, has extra merge commit: ^1 = PR, ^2 = base | |
| - name: Check NPH formatting | |
| uses: arnetheduck/nph-action@v1 | |
| with: | |
| version: 0.7.0 | |
| options: "./. *.nim*" | |
| fail: true | |
| suggest: true | |
| - name: Check clang-format (C/H files in cbind/) | |
| run: | | |
| find cbind/ \( -name "*.c" -o -name "*.h" \) -print0 | \ | |
| xargs -0 clang-format --dry-run --Werror --style=file:cbind/.clang-format | |
| echo "All C/H files in cbind/ are properly formatted." | |
| - name: Check License Header | |
| uses: apache/skywalking-eyes/header@v0.8.0 | |
| with: | |
| config: .github/.licenserc.yaml |