Skip to content

Commit e9aa120

Browse files
committed
Run jit only if branch is main or 3.* (like build.yml)
1 parent 07540bf commit e9aa120

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/jit.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: JIT
22
on:
33
pull_request:
4+
branches:
5+
- 'main'
6+
- '3.*'
47
paths:
58
- '**jit**'
69
- 'Python/bytecodes.c'
@@ -9,6 +12,9 @@ on:
912
- '!**/*.md'
1013
- '!**/*.ini'
1114
push:
15+
branches:
16+
- 'main'
17+
- '3.*'
1218
paths:
1319
- '**jit**'
1420
- 'Python/bytecodes.c'

0 commit comments

Comments
 (0)