Skip to content

test: avoid brittle rich help wrapping #6

test: avoid brittle rich help wrapping

test: avoid brittle rich help wrapping #6

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: python -m pip install -e ".[dev]"
- name: Tests
run: python -m pytest
- name: Compile
run: python -m compileall -q src tests examples
- name: Ruff
run: python -m ruff check .
- name: Black
run: python -m black --check .
- name: Mypy
run: python -m mypy src tests examples