Skip to content

Commit 64e1130

Browse files
author
Krzysztof Dziedzic
committed
Add ITK test suite
1 parent 734d062 commit 64e1130

6 files changed

Lines changed: 577 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: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: ITK
2+
3+
on:
4+
push:
5+
branches: [main, 1.0-dev]
6+
pull_request:
7+
paths-ignore:
8+
- '**.md'
9+
- 'LICENSE'
10+
- '.github/CODEOWNERS'
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+
with:
27+
enable-cache: true
28+
cache-dependency-glob: "uv.lock"
29+
30+
- name: Run ITK Tests
31+
run: bash run_itk.sh
32+
working-directory: itk

itk/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)