Skip to content

Improve sample hex output #134

Improve sample hex output

Improve sample hex output #134

Workflow file for this run

name: Makefile CI
on:
push:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: make install_devel
- name: Run check
run: make check
- name: Run tests
run: make test