Fix make_full_disasm_for_code and disassemble_all combo
#50
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 . |