feat: implement auditlog ng client #2
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: Proto generation check | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| make-proto: | |
| name: Run make proto | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.13" | |
| - name: Install buf | |
| uses: bufbuild/buf-setup-action@v1 | |
| - name: Verify buf | |
| run: buf --version | |
| - name: Run make proto | |
| run: make proto |