Skip to content

Merge pull request #29 from googlemaps-samples/tirodkar-patch-2 #52

Merge pull request #29 from googlemaps-samples/tirodkar-patch-2

Merge pull request #29 from googlemaps-samples/tirodkar-patch-2 #52

Workflow file for this run

name: Python CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
cache-dependency-glob: "agent/python/uv.lock"
- name: Set up Python
run: uv python install
- name: Install dependencies
run: uv sync --all-groups
working-directory: agent/python
continue-on-error: true
- name: Type check with pyright
run: uv run --frozen pyright
working-directory: agent/python
continue-on-error: true
- name: Lint with ruff
run: uv run --frozen ruff check .
working-directory: agent/python
continue-on-error: true