Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 9 additions & 23 deletions .github/workflows/install-smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,16 @@
name: Install Smoke Test
on:
push:
branches: [main, 1.0-dev]
paths-ignore:
- '**.md'
- 'LICENSE'
- 'docs/**'
- '.github/CODEOWNERS'
- '.github/ISSUE_TEMPLATE/**'
- '.github/PULL_REQUEST_TEMPLATE.md'
- '.github/dependabot.yml'
- '.gitignore'
- '.git-blame-ignore-revs'
- '.gemini/**'
branches: [main]
pull_request:
paths-ignore:
- '**.md'
- 'LICENSE'
- 'docs/**'
- '.github/CODEOWNERS'
- '.github/ISSUE_TEMPLATE/**'
- '.github/PULL_REQUEST_TEMPLATE.md'
- '.github/dependabot.yml'
- '.gitignore'
- '.git-blame-ignore-revs'
- '.gemini/**'
paths:
- 'src/**'
- 'pyproject.toml'
- 'uv.lock'
- 'scripts/test_install_smoke.py'
- 'scripts/test_install_smoke.sh'
# Self-callout: re-run when this workflow changes so YAML edits are validated in PRs.
- '.github/workflows/install-smoke.yml'
permissions:
contents: read

Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/itk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,15 @@ name: ITK

on:
push:
branches: [main, 1.0-dev]
branches: [main]
pull_request:
paths:
- 'src/**'
- 'itk/**'
- 'pyproject.toml'
- 'uv.lock'
# Self-callout: re-run when this workflow changes so YAML edits are validated in PRs.
- '.github/workflows/itk.yaml'

permissions:
contents: read
Expand Down
21 changes: 9 additions & 12 deletions .github/workflows/linter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,15 @@
name: Lint Code Base
on:
pull_request:
branches: [main, 1.0-dev]
paths-ignore:
- '**.md'
- 'LICENSE'
- 'docs/**'
- '.github/CODEOWNERS'
- '.github/ISSUE_TEMPLATE/**'
- '.github/PULL_REQUEST_TEMPLATE.md'
- '.github/dependabot.yml'
- '.gitignore'
- '.git-blame-ignore-revs'
- '.gemini/**'
branches: [main]
paths:
- '**.py'
- '**.pyi'
- 'pyproject.toml'
- 'uv.lock'
- '.jscpd.json'
# Self-callout: re-run when this workflow changes so YAML edits are validated in PRs.
- '.github/workflows/linter.yaml'
permissions:
contents: read
jobs:
Expand Down
29 changes: 7 additions & 22 deletions .github/workflows/run-tck.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,30 +3,15 @@ name: Run TCK
on:
push:
branches: [ "main" ]
paths-ignore:
- '**.md'
- 'LICENSE'
- 'docs/**'
- '.github/CODEOWNERS'
- '.github/ISSUE_TEMPLATE/**'
- '.github/PULL_REQUEST_TEMPLATE.md'
- '.github/dependabot.yml'
- '.gitignore'
- '.git-blame-ignore-revs'
- '.gemini/**'
pull_request:
branches: [ "main" ]
paths-ignore:
- '**.md'
- 'LICENSE'
- 'docs/**'
- '.github/CODEOWNERS'
- '.github/ISSUE_TEMPLATE/**'
- '.github/PULL_REQUEST_TEMPLATE.md'
- '.github/dependabot.yml'
- '.gitignore'
- '.git-blame-ignore-revs'
- '.gemini/**'
paths:
- 'src/**'
- 'tck/**'
- 'pyproject.toml'
- 'uv.lock'
# Self-callout: re-run when this workflow changes so YAML edits are validated in PRs.
- '.github/workflows/run-tck.yaml'

permissions:
contents: read
Expand Down
33 changes: 10 additions & 23 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,17 @@
name: Run Unit Tests
on:
push:
branches: [main, 1.0-dev]
paths-ignore:
- '**.md'
- 'LICENSE'
- 'docs/**'
- '.github/CODEOWNERS'
- '.github/ISSUE_TEMPLATE/**'
- '.github/PULL_REQUEST_TEMPLATE.md'
- '.github/dependabot.yml'
- '.gitignore'
- '.git-blame-ignore-revs'
- '.gemini/**'
branches: [main]
pull_request:
paths-ignore:
- '**.md'
- 'LICENSE'
- 'docs/**'
- '.github/CODEOWNERS'
- '.github/ISSUE_TEMPLATE/**'
- '.github/PULL_REQUEST_TEMPLATE.md'
- '.github/dependabot.yml'
- '.gitignore'
- '.git-blame-ignore-revs'
- '.gemini/**'
paths:
- 'src/**'
- 'tests/**'
- 'pyproject.toml'
- 'uv.lock'
- 'scripts/run_db_tests.sh'
- 'scripts/docker-compose.test.yml'
# Self-callout: re-run when this workflow changes so YAML edits are validated in PRs.
- '.github/workflows/unit-tests.yml'
permissions:
contents: read

Expand Down
Loading