Skip to content

Merge pull request #72 from googlemaps-samples/release-maui-samples-0… #133

Merge pull request #72 from googlemaps-samples/release-maui-samples-0…

Merge pull request #72 from googlemaps-samples/release-maui-samples-0… #133

Workflow file for this run

# Copyright 2026 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Python CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4.4.0
with:
persist-credentials: false
- name: Install uv
uses: astral-sh/setup-uv@d4b2f3b6ecc6e67c4457f6d3e41ec42d3d0fcb86 # v5.4.2
with:
enable-cache: auto
- 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 pyright
working-directory: agent/python
continue-on-error: true
- name: Lint with ruff
run: uv run ruff check .
working-directory: agent/python
continue-on-error: true