Skip to content

Commit a09e212

Browse files
committed
Run Python build on pushes to any branch
Replace explicit branch list (main, master) with a wildcard ('**') in .github/workflows/build-python.yml so the workflow triggers on pushes to any branch. Keeps workflow_dispatch and other settings unchanged; this ensures CI runs for feature branches and other non-main branches.
1 parent 7a89035 commit a09e212

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/build-python.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ name: Build Python Packages
33
on:
44
push:
55
branches:
6-
- main
7-
- master
6+
- '**'
87
workflow_dispatch:
98

109
env:

0 commit comments

Comments
 (0)