Skip to content
Merged
Changes from 1 commit
Commits
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
Ensure python 3.14 runs on CI
  • Loading branch information
ShaharNaveh committed Mar 17, 2026
commit e59d6cdb8189946196abc7b3fa4c99335639f7c3
7 changes: 7 additions & 0 deletions .github/workflows/pr-format.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ concurrency:
group: format-check-${{ github.event.pull_request.number }}
cancel-in-progress: true

env:
PYTHON_VERSION: "3.14.3"

jobs:
format_check:
permissions:
Expand Down Expand Up @@ -45,6 +48,10 @@ jobs:
- name: Run ruff check import sorting
run: ruff check --select I --fix

- uses: actions/setup-python@v6.2.0
with:
python-version: ${{ env.PYTHON_VERSION }}

- name: Run generate_opcode_metadata.py
run: python scripts/generate_opcode_metadata.py

Expand Down
Loading