Skip to content

build(deps): bump google-cloud-aiplatform from 1.127.0 to 1.133.0 in the uv group across 1 directory #95

build(deps): bump google-cloud-aiplatform from 1.127.0 to 1.133.0 in the uv group across 1 directory

build(deps): bump google-cloud-aiplatform from 1.127.0 to 1.133.0 in the uv group across 1 directory #95

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Set up Python
run: uv python install 3.13
- name: Install dependencies
run: uv sync --all-extras --dev
- name: Lint with Ruff
run: uv run ruff check .
- name: Format check with Ruff
run: uv run ruff format --check .
- name: Type check with ty
run: uv run ty check
- name: Run tests
run: uv run pytest