chore(deps): bump protobuf from 6.33.2 to 6.33.5 in /examples/simple #113
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: ci-pydgraph-code-quality | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| - ready_for_review | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| check-code-quality: | |
| name: Code Quality Checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout pydgraph | |
| uses: actions/checkout@v5 | |
| with: | |
| repository: dgraph-io/pydgraph | |
| ref: ${{ github.ref }} | |
| - name: Setup python runtime and tooling | |
| uses: ./.github/actions/setup-python-and-tooling | |
| with: | |
| python-version: "3.13" | |
| - name: Setup project dependencies | |
| run: INSTALL_MISSING_TOOLS=true make setup | |
| - name: Check generated protobufs are current | |
| run: | | |
| make protogen | |
| git diff --exit-code -- . | |
| - name: Run code quality checks | |
| run: trunk check --all --ci | |
| - name: Run ty type checker | |
| run: uv run ty check pydgraph tests |