Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 23 additions & 6 deletions .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# 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:
Expand All @@ -9,13 +23,16 @@ on:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4.4.0
with:
persist-credentials: false
- name: Install uv
uses: astral-sh/setup-uv@v5
uses: astral-sh/setup-uv@d4b2f3b6ecc6e67c4457f6d3e41ec42d3d0fcb86 # v5.4.2
with:
enable-cache: true
cache-dependency-glob: "agent/python_agent/uv.lock"
enable-cache: auto

- name: Set up Python
run: uv python install
Expand All @@ -25,11 +42,11 @@ jobs:
working-directory: agent/python_agent

- name: Type check with pyright
run: uv run --frozen pyright
run: uv run pyright
working-directory: agent/python_agent
continue-on-error: true

- name: Lint with ruff
run: uv run --frozen ruff check .
run: uv run ruff check .
working-directory: agent/python_agent
continue-on-error: true
4 changes: 1 addition & 3 deletions .github/workflows/web-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,9 @@ jobs:
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
with:
node-version: '22'
cache: 'npm'
cache-dependency-path: client/web/package-lock.json

- name: Install dependencies
run: npm ci
run: npm install
working-directory: client/web

- name: Type check
Expand Down
9 changes: 0 additions & 9 deletions CHANGELOG.md

This file was deleted.

2,867 changes: 0 additions & 2,867 deletions agent/python_agent/uv.lock

This file was deleted.

8,455 changes: 1,194 additions & 7,261 deletions client/android/GoogleMapsA2UI/src/main/assets/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions client/android/web_build/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@googlemaps/a2ui-android-web",
"version": "0.1.7",
"version": "0.1.8",
"type": "module",
"scripts": {
"build": "vite build && node -e \"const fs=require('fs');const p='dist/index.html';fs.writeFileSync(p,fs.readFileSync(p,'utf8').replace(/type=\\\"module\\\" crossorigin/g,'defer')); fs.copyFileSync(p, '../GoogleMapsA2UI/src/main/assets/index.html'); console.log('Successfully copied to native assets!');\""
},
"dependencies": {
"@googlemaps/a2ui": "^0.1.7",
"@googlemaps/a2ui": "0.1.8",
"lit": "^3.3.1"
},
"devDependencies": {
Expand Down
8,458 changes: 1,194 additions & 7,264 deletions client/ios/GoogleMapsA2UI/Sources/GoogleMapsA2UI/Resources/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions client/ios/web_build/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@googlemaps/a2ui-ios-web",
"version": "0.1.7",
"version": "0.1.8",
"type": "module",
"scripts": {
"build": "vite build && node -e \"const fs=require('fs');const p='dist/index.html';fs.writeFileSync(p,fs.readFileSync(p,'utf8').replace(/type=\\\"module\\\" crossorigin/g,'defer')); fs.copyFileSync(p, '../GoogleMapsA2UI/Sources/GoogleMapsA2UI/Resources/index.html'); console.log('Successfully copied to native resources!');\""
},
"dependencies": {
"@googlemaps/a2ui": "^0.1.7",
"@googlemaps/a2ui": "0.1.8",
"lit": "^3.3.1"
},
"devDependencies": {
Expand Down
Loading
Loading