feat: implement versioned push notification serializers with legacy v0.3 compatibility support #206
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Run ITK | |
| on: | |
| push: | |
| branches: [ "main", "epic" ] | |
| pull_request: | |
| paths: | |
| - 'src/**' | |
| - 'itk/**' | |
| permissions: | |
| contents: read | |
| env: | |
| # Tag of the a2a-samples | |
| A2A_SAMPLES_REVISION: itk-v.02-alpha | |
| # Only run the latest job | |
| concurrency: | |
| group: '${{ github.workflow }} @ ${{ github.head_ref || github.ref }}' | |
| cancel-in-progress: true | |
| jobs: | |
| itk-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: 'npm' | |
| - name: Install Node dependencies | |
| run: npm install | |
| - name: Run Error Handling Tests | |
| run: bash itk/run_error_tests.sh | |
| - name: Run ITK Tests | |
| run: bash run_itk.sh | |
| working-directory: itk | |
| env: | |
| A2A_SAMPLES_REVISION: ${{ env.A2A_SAMPLES_REVISION }} |