Skip to content

Update mkdocstrings[python] requirement from >=0.29.1 to >=1.0.4 (#232) #580

Update mkdocstrings[python] requirement from >=0.29.1 to >=1.0.4 (#232)

Update mkdocstrings[python] requirement from >=0.29.1 to >=1.0.4 (#232) #580

Workflow file for this run

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