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
21 changes: 17 additions & 4 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 @@ -7,16 +21,15 @@
branches: [ main ]

jobs:
build:

Check warning on line 24 in .github/workflows/python-ci.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

python-ci.yml:24: overly broad permissions: default permissions used due to no permissions: block
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

Check failure on line 27 in .github/workflows/python-ci.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 27 in .github/workflows/python-ci.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

python-ci.yml:27: unpinned action reference: action is not pinned to a hash (required by blanket policy)

- name: Install uv
uses: astral-sh/setup-uv@v5

Check failure on line 30 in .github/workflows/python-ci.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 30 in .github/workflows/python-ci.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

python-ci.yml:30: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
enable-cache: true
cache-dependency-glob: "agent/python/uv.lock"
enable-cache: auto

- name: Set up Python
run: uv python install
Expand All @@ -27,11 +40,11 @@
continue-on-error: true

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

- name: Lint with ruff
run: uv run --frozen ruff check .
run: uv run ruff check .
working-directory: agent/python
continue-on-error: true
18 changes: 15 additions & 3 deletions .github/workflows/web-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: Web CI

on:
Expand All @@ -13,19 +27,17 @@
contents: read
packages: read
steps:
- uses: actions/checkout@v4

Check failure on line 30 in .github/workflows/web-ci.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 30 in .github/workflows/web-ci.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

web-ci.yml:30: unpinned action reference: action is not pinned to a hash (required by blanket policy)

- name: Use Node.js
uses: actions/setup-node@v4

Check failure on line 33 in .github/workflows/web-ci.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 33 in .github/workflows/web-ci.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

web-ci.yml:33: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: client/web/react/package-lock.json
registry-url: 'https://npm.pkg.github.com/'
scope: '@googlemaps'

- name: Install dependencies
run: npm ci
run: npm install
working-directory: client/web/react
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
4,178 changes: 0 additions & 4,178 deletions agent/python/uv.lock

This file was deleted.

1 change: 1 addition & 0 deletions client/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ dependencies {
implementation 'com.google.android.material:material:1.11.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.recyclerview:recyclerview:1.3.2'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7'
implementation 'com.squareup.okhttp3:okhttp:5.3.2'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.2'
testImplementation 'junit:junit:4.13.2'
Expand Down
2 changes: 1 addition & 1 deletion client/android/app/src/androidTest/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.maui.test">

<uses-sdk android:minSdkVersion="26" android:targetSdkVersion="34" />


<instrumentation
android:name="androidx.test.runner.AndroidJUnitRunner"
Expand Down
2 changes: 1 addition & 1 deletion client/android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.maui">

<uses-sdk android:minSdkVersion="26" android:targetSdkVersion="34" />


<uses-permission android:name="android.permission.INTERNET" />

Expand Down
16 changes: 9 additions & 7 deletions client/ios/A2UI-Example.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
objects = {

/* Begin PBXBuildFile section */
06D7D379303CF72A005E2E6E /* GoogleMapsA2UI in Frameworks */ = {isa = PBXBuildFile; productRef = 06D7D378303CF72A005E2E6E /* GoogleMapsA2UI */; };
0686BC60303E3D7200D716B2 /* GoogleMapsA2UI in Frameworks */ = {isa = PBXBuildFile; productRef = 0686BC5F303E3D7200D716B2 /* GoogleMapsA2UI */; };
0686BC61303E3F8D00D716B2 /* MockScenarioRegistry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06D7D381303CFB03005E2E6E /* MockScenarioRegistry.swift */; };
06D7D39E303CFB03005E2E6E /* LatencyLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06D7D380303CFB03005E2E6E /* LatencyLogger.swift */; };
06D7D39F303CFB03005E2E6E /* ResourceLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06D7D383303CFB03005E2E6E /* ResourceLogger.swift */; };
06D7D3A0303CFB03005E2E6E /* MockScenarioRegistry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06D7D381303CFB03005E2E6E /* MockScenarioRegistry.swift */; };
Expand Down Expand Up @@ -97,7 +98,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
06D7D379303CF72A005E2E6E /* GoogleMapsA2UI in Frameworks */,
0686BC60303E3D7200D716B2 /* GoogleMapsA2UI in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -198,7 +199,7 @@
);
name = "A2UI-Example";
packageProductDependencies = (
06D7D378303CF72A005E2E6E /* GoogleMapsA2UI */,
0686BC5F303E3D7200D716B2 /* GoogleMapsA2UI */,
);
productName = "A2UI-Example";
productReference = FDC9C4D02F5B9CB800ABA773 /* A2UI-Example.app */;
Expand Down Expand Up @@ -234,7 +235,7 @@
mainGroup = FDC9C4C72F5B9CB800ABA773;
minimizedProjectReferenceProxies = 1;
packageReferences = (
06D7D376303CF70D005E2E6E /* XCLocalSwiftPackageReference "../../../a2ui/client/ios/GoogleMapsA2UI" */,
0686BC5E303E3D6200D716B2 /* XCLocalSwiftPackageReference "../../../a2ui/client/ios/GoogleMapsA2UI" */,
);
preferredProjectObjectVersion = 77;
productRefGroup = FDC9C4D12F5B9CB800ABA773 /* Products */;
Expand Down Expand Up @@ -291,6 +292,7 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
0686BC61303E3F8D00D716B2 /* MockScenarioRegistry.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -578,16 +580,16 @@
/* End XCConfigurationList section */

/* Begin XCLocalSwiftPackageReference section */
06D7D376303CF70D005E2E6E /* XCLocalSwiftPackageReference "../../../a2ui/client/ios/GoogleMapsA2UI" */ = {
0686BC5E303E3D6200D716B2 /* XCLocalSwiftPackageReference "../../../a2ui/client/ios/GoogleMapsA2UI" */ = {
isa = XCLocalSwiftPackageReference;
relativePath = ../../../a2ui/client/ios/GoogleMapsA2UI;
};
/* End XCLocalSwiftPackageReference section */

/* Begin XCSwiftPackageProductDependency section */
06D7D378303CF72A005E2E6E /* GoogleMapsA2UI */ = {
0686BC5F303E3D7200D716B2 /* GoogleMapsA2UI */ = {
isa = XCSwiftPackageProductDependency;
package = 06D7D376303CF70D005E2E6E /* XCLocalSwiftPackageReference "../../../a2ui/client/ios/GoogleMapsA2UI" */;
package = 0686BC5E303E3D6200D716B2 /* XCLocalSwiftPackageReference "../../../a2ui/client/ios/GoogleMapsA2UI" */;
productName = GoogleMapsA2UI;
};
/* End XCSwiftPackageProductDependency section */
Expand Down
Loading
Loading