Skip to content

Commit d3cd8ad

Browse files
youknowoneclaude
andcommitted
Fix CI: Add setup-python to lint job
The lint job was missing actions/setup-python, causing the generate_opcode_metadata.py script to run with the default system Python which may not have itertools.batched (Python 3.12+). Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent aa99c05 commit d3cd8ad

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -452,6 +452,10 @@ jobs:
452452
- name: Ensure docs generate no warnings
453453
run: cargo doc
454454

455+
- uses: actions/setup-python@v6.2.0
456+
with:
457+
python-version: ${{ env.PYTHON_VERSION }}
458+
455459
- name: Ensure Lib/_opcode_metadata is updated
456460
run: |
457461
python scripts/generate_opcode_metadata.py

0 commit comments

Comments
 (0)