Skip to content
Merged
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
28 changes: 25 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
steps:
- run: true

# Skip unit/integration tests when only documentation changed (pre-commit/Type-Check still run).
# Skip unit/integration tests when only non-code files changed (Type-Check still runs).
Check-changed-files:
Comment thread
pankajkoti marked this conversation as resolved.
needs: Authorize
runs-on: ubuntu-latest
Expand Down Expand Up @@ -69,12 +69,34 @@ jobs:
while IFS= read -r f; do
[ -z "$f" ] && continue
case "$f" in
README.md) ;;
# Documentation and metadata
README.rst|README.md) ;;
CHANGELOG.rst) ;;
CODE_OF_CONDUCT.md) ;;
CONTRIBUTING.md) ;;
.github/pull_request_template.md) ;;
LICENSE) ;;
SECURITY.rst) ;;
PRIVACY_NOTICE.rst) ;;
CODEOWNERS) ;;
CLAUDE.md) ;;
docs/*) ;;
# GitHub and CI config unrelated to tests
.github/pull_request_template.md) ;;
.github/ISSUE_TEMPLATE/*) ;;
.github/dependabot.yml) ;;
.github/workflows/docs.yml) ;;
.github/workflows/stale.yml) ;;
.github/workflows/actionlint.yml) ;;
.github/workflows/codeql.yml) ;;
.github/workflows/zizmor.yml) ;;
.github/workflows/deploy.yml) ;;
# Tooling config that does not affect test outcomes
.gitignore) ;;
.tiltignore) ;;
Tiltfile) ;;
.codespell-ignore-words) ;;
.pre-commit-config.yaml) ;;
.airflow-registry.yaml) ;;
Comment thread
pankajkoti marked this conversation as resolved.
*) CODE_CHANGED=true; break ;;
esac
done <<< "$FILES"
Expand Down
Loading