Skip to content

Commit f0954bf

Browse files
kdziedzic70Krzysztof Dziedzic
andauthored
ci: Add ITK test suite (#868)
# Description The PR adds: * implementation of itk testing agent for "current" branch * integration of itk into python sdk * deployment of itk test into github actions * execution of compatibility tests with stable sdks (python-v10, python-v03, go-v10, go-v03) - [x] Follow the [`CONTRIBUTING` Guide](https://github.com/a2aproject/a2a-python/blob/main/CONTRIBUTING.md). - [x] Make your Pull Request title in the <https://www.conventionalcommits.org/> specification. - Important Prefixes for [release-please](https://github.com/googleapis/release-please): - `fix:` which represents bug fixes, and correlates to a [SemVer](https://semver.org/) patch. - `feat:` represents a new feature, and correlates to a SemVer minor. - `feat!:`, or `fix!:`, `refactor!:`, etc., which represent a breaking change (indicated by the `!`) and will result in a SemVer major. - [x] Ensure the tests and linter pass (Run `bash scripts/format.sh` from the repository root to format) - [ ] Appropriate docs were updated (if necessary) Fixes #<issue_number_goes_here> 🦕 Co-authored-by: Krzysztof Dziedzic <dziedzick@google.com>
1 parent c367c83 commit f0954bf

7 files changed

Lines changed: 585 additions & 0 deletions

File tree

.github/actions/spelling/allow.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,10 @@ initdb
6363
inmemory
6464
INR
6565
isready
66+
itk
67+
ITK
6668
jcs
69+
jit
6770
jku
6871
JOSE
6972
JPY
@@ -107,11 +110,13 @@ protoc
107110
pydantic
108111
pyi
109112
pypistats
113+
pyproto
110114
pyupgrade
111115
pyversions
112116
redef
113117
respx
114118
resub
119+
rmi
115120
RS256
116121
RUF
117122
SECP256R1

.github/workflows/itk.yaml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: ITK
2+
3+
on:
4+
push:
5+
branches: [main, 1.0-dev]
6+
pull_request:
7+
paths:
8+
- 'src/**'
9+
- 'itk/**'
10+
- 'pyproject.toml'
11+
12+
permissions:
13+
contents: read
14+
15+
jobs:
16+
itk:
17+
name: ITK
18+
runs-on: ubuntu-latest
19+
20+
steps:
21+
- name: Checkout code
22+
uses: actions/checkout@v6
23+
24+
- name: Install uv
25+
uses: astral-sh/setup-uv@v7
26+
27+
- name: Run ITK Tests
28+
run: bash run_itk.sh
29+
working-directory: itk
30+
env:
31+
A2A_SAMPLES_REVISION: itk-v0.1-alpha

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,8 @@ coverage.xml
1212
spec.json
1313
docker-compose.yaml
1414
.geminiignore
15+
16+
# ITK Integration Test Artifacts
17+
itk/a2a-samples/
18+
itk/pyproto/
19+
itk/instruction.proto

itk/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)