Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Run jit only if branch is main or 3.* (like build.yml)
  • Loading branch information
diegorusso committed Nov 28, 2024
commit e9aa1208f13484f217019389c092e95244eba21d
6 changes: 6 additions & 0 deletions .github/workflows/jit.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: JIT
on:
pull_request:
branches:
- 'main'
- '3.*'
paths:
- '**jit**'
- 'Python/bytecodes.c'
Expand All @@ -9,6 +12,9 @@ on:
- '!**/*.md'
- '!**/*.ini'
push:
branches:
- 'main'
- '3.*'
paths:
- '**jit**'
- 'Python/bytecodes.c'
Expand Down