Skip to content

Add Ghidra apply-back support #292

Add Ghidra apply-back support

Add Ghidra apply-back support #292

Workflow file for this run

name: Quokka Python Package
on:
push:
branches:
- main
paths:
- "bindings/python/**"
- "proto/**"
- "tests/python/**"
- "pyproject.toml"
- "setup.py"
- "MANIFEST.in"
- ".github/workflows/python.yml"
pull_request:
branches: ["**"]
paths:
- "bindings/python/**"
- "proto/**"
- "tests/python/**"
- "pyproject.toml"
- "setup.py"
- "MANIFEST.in"
- ".github/workflows/python.yml"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions: {}
jobs:
python-test:
name: "Python ${{ matrix.python-version }} / ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
lfs: true
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: ${{ matrix.python-version }}
- name: Install libmagic (macOS)
if: runner.os == 'macOS'
run: brew install libmagic
- run: pip install '.[test]'
- name: Tests
run: pytest tests/python