Skip to content

fix(v1.0): tolerate non-utf8 bytes in refine ledger reads #91

fix(v1.0): tolerate non-utf8 bytes in refine ledger reads

fix(v1.0): tolerate non-utf8 bytes in refine ledger reads #91

Workflow file for this run

name: tests
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
pytest:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.10", "3.12"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install package with dev extras
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Run default test suite (skips `slow` marker)
run: pytest tests/ -q