Skip to content

Write binary to stdout buffer #4

Write binary to stdout buffer

Write binary to stdout buffer #4

Workflow file for this run

name: Python CI
on:
push:
branches:
- '**'
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8.18, 3.10.18, 3.12.11]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: pip install poetry
- name: Install dependencies
run: poetry install -v
- name: Run tests
run: poetry run pytest