Skip to content

docs: README polish for HN launch readiness #7

docs: README polish for HN launch readiness

docs: README polish for HN launch readiness #7

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install
run: pip install -e ".[dev]"
- name: pytest
run: pytest -v
env:
# Avoid auto-loading whatever pytest plugins happen to live in the
# CI environment; our tests don't need any beyond core pytest.
PYTEST_DISABLE_PLUGIN_AUTOLOAD: "1"