Skip to content

feat: 公开 Msgspec 约束模块供外部使用 #98

feat: 公开 Msgspec 约束模块供外部使用

feat: 公开 Msgspec 约束模块供外部使用 #98

Workflow file for this run

name: Static Check
on:
push:
workflow_call:
jobs:
static-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry
- uses: actions/setup-python@v5
with:
python-version: "3.x"
cache: "poetry"
- name: Install Dependencies
run: poetry install --all-extras --no-root
- name: Lint With Ruff
run: poetry run ruff check --output-format=github .
- name: Type checking with Pyright
run: poetry run pyright --warnings .