Skip to content

feat: Enable ITK tests #4

feat: Enable ITK tests

feat: Enable ITK tests #4

Workflow file for this run

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: bgralewicz/typescript_1.0_support
# 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'
- name: Install Node dependencies
run: npm install
- name: Run ITK Tests
run: bash run_itk.sh
working-directory: itk
env:
A2A_SAMPLES_REVISION: ${{ env.A2A_SAMPLES_REVISION }}