Skip to content

Commit e7a8f53

Browse files
committed
resolve styling and format checks on qa-report branch
1 parent e3724ff commit e7a8f53

1 file changed

Lines changed: 46 additions & 0 deletions

File tree

.github/workflows/periodic-qa.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Copyright 2026 Google LLC
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# https://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
name: A2UI Periodic QA-Demo Status Audit
16+
17+
on:
18+
push:
19+
branches: ["main"]
20+
paths:
21+
- "specification/**/json/**"
22+
- "scripts/qa_report.py"
23+
pull_request:
24+
paths:
25+
- "specification/**/json/**"
26+
- "scripts/qa_report.py"
27+
28+
jobs:
29+
static-ui-validation:
30+
runs-on: ubuntu-latest
31+
32+
steps:
33+
- name: Check out repository
34+
uses: actions/checkout@v4
35+
36+
- name: Install `uv` globally
37+
uses: astral-sh/setup-uv@v3
38+
39+
- name: Setup Python Architecture
40+
uses: actions/setup-python@v5
41+
with:
42+
python-version: "3.11"
43+
44+
- name: Execute Offline Validation Script
45+
working-directory: ./agent_sdks/python
46+
run: uv run python ../../scripts/qa_report.py

0 commit comments

Comments
 (0)