Skip to content

Allow to query RISC-V ELF binaries #134

Allow to query RISC-V ELF binaries

Allow to query RISC-V ELF binaries #134

Workflow file for this run

name: "Build & Test"
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip # caching pip dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- run: make lint
- run: make test
- run: sqlelf --help