File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22name : Install Smoke Test
33on :
44 push :
5- branches : [main, 1.0-dev]
6- paths-ignore :
7- - ' **.md'
8- - ' LICENSE'
9- - ' docs/**'
10- - ' .github/CODEOWNERS'
11- - ' .github/ISSUE_TEMPLATE/**'
12- - ' .github/PULL_REQUEST_TEMPLATE.md'
13- - ' .github/dependabot.yml'
14- - ' .gitignore'
15- - ' .git-blame-ignore-revs'
16- - ' .gemini/**'
5+ branches : [main]
176 pull_request :
18- paths-ignore :
19- - ' **.md'
20- - ' LICENSE'
21- - ' docs/**'
22- - ' .github/CODEOWNERS'
23- - ' .github/ISSUE_TEMPLATE/**'
24- - ' .github/PULL_REQUEST_TEMPLATE.md'
25- - ' .github/dependabot.yml'
26- - ' .gitignore'
27- - ' .git-blame-ignore-revs'
28- - ' .gemini/**'
7+ paths :
8+ - ' src/**'
9+ - ' pyproject.toml'
10+ - ' uv.lock'
11+ - ' scripts/test_install_smoke.py'
12+ - ' scripts/test_install_smoke.sh'
13+ # Self-callout: re-run when this workflow changes so YAML edits are validated in PRs.
14+ - ' .github/workflows/install-smoke.yml'
2915permissions :
3016 contents : read
3117
Original file line number Diff line number Diff line change @@ -2,12 +2,15 @@ name: ITK
22
33on :
44 push :
5- branches : [main, 1.0-dev ]
5+ branches : [main]
66 pull_request :
77 paths :
88 - ' src/**'
99 - ' itk/**'
1010 - ' pyproject.toml'
11+ - ' uv.lock'
12+ # Self-callout: re-run when this workflow changes so YAML edits are validated in PRs.
13+ - ' .github/workflows/itk.yaml'
1114
1215permissions :
1316 contents : read
Original file line number Diff line number Diff line change 22name : Lint Code Base
33on :
44 pull_request :
5- branches : [main, 1.0-dev]
6- paths-ignore :
7- - ' **.md'
8- - ' LICENSE'
9- - ' docs/**'
10- - ' .github/CODEOWNERS'
11- - ' .github/ISSUE_TEMPLATE/**'
12- - ' .github/PULL_REQUEST_TEMPLATE.md'
13- - ' .github/dependabot.yml'
14- - ' .gitignore'
15- - ' .git-blame-ignore-revs'
16- - ' .gemini/**'
5+ branches : [main]
6+ paths :
7+ - ' **.py'
8+ - ' **.pyi'
9+ - ' pyproject.toml'
10+ - ' uv.lock'
11+ - ' .jscpd.json'
12+ # Self-callout: re-run when this workflow changes so YAML edits are validated in PRs.
13+ - ' .github/workflows/linter.yaml'
1714permissions :
1815 contents : read
1916jobs :
Original file line number Diff line number Diff line change @@ -3,30 +3,15 @@ name: Run TCK
33on :
44 push :
55 branches : [ "main" ]
6- paths-ignore :
7- - ' **.md'
8- - ' LICENSE'
9- - ' docs/**'
10- - ' .github/CODEOWNERS'
11- - ' .github/ISSUE_TEMPLATE/**'
12- - ' .github/PULL_REQUEST_TEMPLATE.md'
13- - ' .github/dependabot.yml'
14- - ' .gitignore'
15- - ' .git-blame-ignore-revs'
16- - ' .gemini/**'
176 pull_request :
187 branches : [ "main" ]
19- paths-ignore :
20- - ' **.md'
21- - ' LICENSE'
22- - ' docs/**'
23- - ' .github/CODEOWNERS'
24- - ' .github/ISSUE_TEMPLATE/**'
25- - ' .github/PULL_REQUEST_TEMPLATE.md'
26- - ' .github/dependabot.yml'
27- - ' .gitignore'
28- - ' .git-blame-ignore-revs'
29- - ' .gemini/**'
8+ paths :
9+ - ' src/**'
10+ - ' tck/**'
11+ - ' pyproject.toml'
12+ - ' uv.lock'
13+ # Self-callout: re-run when this workflow changes so YAML edits are validated in PRs.
14+ - ' .github/workflows/run-tck.yaml'
3015
3116permissions :
3217 contents : read
Original file line number Diff line number Diff line change 22name : Run Unit Tests
33on :
44 push :
5- branches : [main, 1.0-dev]
6- paths-ignore :
7- - ' **.md'
8- - ' LICENSE'
9- - ' docs/**'
10- - ' .github/CODEOWNERS'
11- - ' .github/ISSUE_TEMPLATE/**'
12- - ' .github/PULL_REQUEST_TEMPLATE.md'
13- - ' .github/dependabot.yml'
14- - ' .gitignore'
15- - ' .git-blame-ignore-revs'
16- - ' .gemini/**'
5+ branches : [main]
176 pull_request :
18- paths-ignore :
19- - ' **.md'
20- - ' LICENSE'
21- - ' docs/**'
22- - ' .github/CODEOWNERS'
23- - ' .github/ISSUE_TEMPLATE/**'
24- - ' .github/PULL_REQUEST_TEMPLATE.md'
25- - ' .github/dependabot.yml'
26- - ' .gitignore'
27- - ' .git-blame-ignore-revs'
28- - ' .gemini/**'
7+ paths :
8+ - ' src/**'
9+ - ' tests/**'
10+ - ' pyproject.toml'
11+ - ' uv.lock'
12+ - ' scripts/run_db_tests.sh'
13+ - ' scripts/docker-compose.test.yml'
14+ # Self-callout: re-run when this workflow changes so YAML edits are validated in PRs.
15+ - ' .github/workflows/unit-tests.yml'
2916permissions :
3017 contents : read
3118
You can’t perform that action at this time.
0 commit comments