Skip to content

Commit 9b4a6e4

Browse files
ci: skip test workflow on docs-only PRs
Test suite takes a long time to run across the Python 3.10-3.14 matrix and against real Athena. Docs-only changes don't exercise any code path the tests cover, so skip the workflow when the diff is limited to `docs/**` or top-level Markdown files. The weekly cron schedule keeps tests running against master regardless.
1 parent 0c2ab2a commit 9b4a6e4

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/test.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ name: Test
22

33
on:
44
pull_request:
5+
paths-ignore:
6+
- 'docs/**'
7+
- '**.md'
58
schedule:
69
- cron: '0 0 * * 0'
710

0 commit comments

Comments
 (0)