Skip to content

Commit a7d653d

Browse files
[MAINTENANCE] Only run python 3.13 marker tests on PRs (#11666)
1 parent 3a1a47f commit a7d653d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -686,10 +686,13 @@ jobs:
686686
# TODO: would like to adopt `actionlint` pre-commit hook
687687
# but false positive here and inability to do an inline ignore
688688
# prevents this https://github.com/rhysd/actionlint/issues/237
689+
- python-version: ${{ github.event_name == 'pull_request_target' && '3.10' }}
689690
- python-version: ${{ github.event_name == 'pull_request_target' && '3.11' }}
690691
- python-version: ${{ github.event_name == 'pull_request_target' && '3.12' }}
692+
- python-version: ${{ github.event_name == 'merge_group' && '3.10' }}
691693
- python-version: ${{ github.event_name == 'merge_group' && '3.11' }}
692694
- python-version: ${{ github.event_name == 'merge_group' && '3.12' }}
695+
- python-version: ${{ github.event_name == 'workflow_dispatch' && '3.10' }}
693696
- python-version: ${{ github.event_name == 'workflow_dispatch' && '3.11' }}
694697
- python-version: ${{ github.event_name == 'workflow_dispatch' && '3.12' }}
695698
# clickhouse needs dependency update
@@ -782,7 +785,7 @@ jobs:
782785
markers:
783786
# - redshift
784787
- gx-redshift
785-
python-version: ["3.10", "3.13"]
788+
python-version: ["3.13"]
786789

787790
steps:
788791
- name: Checkout

0 commit comments

Comments
 (0)