Skip to content

Commit 8e14a3b

Browse files
committed
Refactor workflow triggers for Python bindings tests
1 parent 37f5060 commit 8e14a3b

1 file changed

Lines changed: 4 additions & 15 deletions

File tree

.github/workflows/test-python-bindings.yml

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,11 @@
11
name: Test Python Bindings
22

33
on:
4-
# Run on PRs that touch Python code
5-
pull_request:
6-
paths:
7-
- 'bindings/python/**'
8-
- '.github/workflows/test-python-bindings.yml'
9-
10-
# Run on pushes to branches with "python" in the name
4+
# Run on any push to any branch
115
push:
12-
branches:
13-
- '**python**' # Matches: python-embedded, feature-python, python-docs, etc.
14-
- '**Python**' # Case variations
15-
- '**PYTHON**'
16-
17-
# Run before releases (as a required check for python releases)
18-
release:
19-
types: [created, published]
6+
7+
# Run on any pull request
8+
pull_request:
209

2110
# Allow being called by other workflows (e.g., release workflow)
2211
workflow_call:

0 commit comments

Comments
 (0)