Skip to content

fix(deps): install the milvus-lite extra on Windows for Python >=3.10 (#3676) #4324

fix(deps): install the milvus-lite extra on Windows for Python >=3.10 (#3676)

fix(deps): install the milvus-lite extra on Windows for Python >=3.10 (#3676) #4324

name: Check proto on pull request
on:
pull_request:
branches:
- master
jobs:
build:
name: Run Check Proto
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: [3.9, 3.13]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Fetch tags
run: |
git fetch --prune --unshallow --tags
- name: Set up uv
uses: astral-sh/setup-uv@v7
with:
version: "0.9.21"
enable-cache: true
cache-dependency-glob: uv.lock
- name: Install dependencies
run: |
uv sync --group dev --frozen --python python
- name: Try generate proto
run: |
git submodule update --init
make gen_proto
make check_proto_product