Skip to content

Fix make_full_disasm_for_code and disassemble_all combo (#509) #51

Fix make_full_disasm_for_code and disassemble_all combo (#509)

Fix make_full_disasm_for_code and disassemble_all combo (#509) #51

Workflow file for this run

name: Check code is formatted
on:
push:
pull_request:
jobs:
black_checks:
runs-on: ubuntu-latest
name: Check format with Ruff
steps:
- name: Checkout repo
uses: actions/checkout@main
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install Dependencies
run: |
pip install ruff
pip install -r requirements.txt
pip install types-PyYAML
- name: Ruff format
run: ruff format --check .