Skip to content

add offset support to register capture hook #116

add offset support to register capture hook

add offset support to register capture hook #116

Workflow file for this run

name: Tests
on:
workflow_dispatch:
push:
branches: ["main"]
paths:
- "memobj/**"
- "tests/**"
- ".github/workflows/tests.yml"
- "*.lock"
pull_request:
paths:
- "memobj/**"
- "tests/**"
- ".github/workflows/tests.yml"
- "*.lock"
jobs:
test:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
python-version: [ "3.11", "3.12" ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Update pip
run: python -m pip install -U pip
- name: Set up Poetry
uses: abatilo/actions-poetry@v3
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run pytest