Skip to content

[CLI] Add check for the presence of raw exec path with bindiff format #9

[CLI] Add check for the presence of raw exec path with bindiff format

[CLI] Add check for the presence of raw exec path with bindiff format #9

Workflow file for this run

name: Build_Test
on:
- push
- pull_request
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
build_and_test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- ["3.10", "py310"]
- ["3.11", "py311"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version[0] }}
- name: Install tox
run: python -m pip install tox
- name: Build and test
run: tox -e ${{ matrix.python-version[1] }}