Update mkdocstrings[python] requirement from >=0.29.1 to >=1.0.4 (#232) #580
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: Code Quality | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - '**' | |
| permissions: | |
| contents: read | |
| jobs: | |
| code-quality: | |
| name: Check code formatting and typechecking | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| version: "0.11.11" | |
| python-version: "3.10" | |
| - name: Install workspace | |
| run: uv sync --locked --all-extras --all-groups | |
| - name: Check formatting and linting (betterproto2) | |
| working-directory: ./betterproto2 | |
| shell: bash | |
| run: uv run poe check | |
| - name: Check formatting and linting (betterproto2_compiler) | |
| working-directory: ./betterproto2_compiler | |
| shell: bash | |
| run: uv run poe check | |
| - name: Check proto formatting | |
| working-directory: ./betterproto2_compiler | |
| shell: bash | |
| run: uv run poe check-proto | |
| - name: Pyright | |
| working-directory: ./betterproto2 | |
| shell: bash | |
| run: uv run poe typecheck | |
| - name: Pyright | |
| working-directory: ./betterproto2_compiler | |
| shell: bash | |
| run: uv run poe typecheck |